|
126 | 126 |
|
127 | 127 | \cs_new_protected:Nn \fracmath_garithmetic:NnN
|
128 | 128 | {
|
129 |
| - \prop_if_exist:NF #1 { |
130 |
| - \prop_gclear_new:N #1 |
131 |
| - } |
132 |
| - \fracmath_prepare:N #1 |
133 |
| - \fracmath_prepare:N #3 |
134 |
| - |
135 |
| - \regex_match_case:nn { |
136 |
| - { \A \+ \Z } { \fracmath_gsum:NnN #1 #2 #3 } |
137 |
| - { \A \- \Z } { \fracmath_gsum:NnN #1 #2 #3 } |
138 |
| - { \A \* \Z } { \fracmath_gmultiply:NN #1 #3 } |
139 |
| - } { #2 } |
| 129 | + \group_begin: |
| 130 | + \prop_if_exist:NF #1 { |
| 131 | + \prop_gclear_new:N #1 |
| 132 | + } |
| 133 | + \fracmath_prepare:N #1 |
| 134 | + \fracmath_prepare:N #3 |
| 135 | + |
| 136 | + \regex_match_case:nn { |
| 137 | + { \A \+ \Z } { \fracmath_gsum:NnN #1 #2 #3 } |
| 138 | + { \A \- \Z } { \fracmath_gsum:NnN #1 #2 #3 } |
| 139 | + { \A \* \Z } { \fracmath_gmultiply:NN #1 #3 } |
| 140 | + } { #2 } |
| 141 | + \group_end: |
140 | 142 | }
|
141 | 143 | \cs_generate_variant:Nn \fracmath_garithmetic:NnN
|
142 | 144 | {
|
143 | 145 | cnN, cVN
|
144 | 146 | }
|
145 | 147 |
|
146 | 148 | % Adds or subtracts two values
|
| 149 | +% NB: assumes they have been through \fracmath_prepare:N! |
147 | 150 | \cs_new_protected:Nn \fracmath_gsum:NnN
|
148 | 151 | {
|
149 | 152 | \int_zero_new:N \l__fracmath_tmp_value_int
|
150 |
| - \int_set:Nn \l__fracmath_tmp_value_int { |
151 |
| - \prop_item:Nn #1 { integer } #2 \prop_item:Nn #3 { integer } |
152 |
| - } |
153 |
| - \prop_gput:NnV #1 { integer } \l__fracmath_tmp_value_int |
154 | 153 |
|
155 | 154 | \int_set:Nn \l__fracmath_tmp_value_int {
|
156 | 155 | ( \prop_item:Nn #1 { numerator } * \prop_item:Nn #3 { denominator } ) #2
|
|
164 | 163 | \prop_gput:NnV #1 { denominator } \l__fracmath_tmp_value_int
|
165 | 164 | }
|
166 | 165 |
|
167 |
| -% converts a value into a pure fraction, eg a b/c => (ac+b)/c |
168 |
| -\cs_new_protected:Nn \fracmath_pure:N |
169 |
| -{ |
170 |
| - \int_zero_new:N \l__fracmath_tmp_value_int |
171 |
| - \prop_put:NnV #1 { integer } \l__fracmath_tmp_value_int |
172 |
| - |
173 |
| - \int_add:Nn \l__fracmath_tmp_value_int |
174 |
| - { \prop_item:Nn #1 { numerator } * \prop_item:Nn #1 { denominator } } |
175 |
| - \prop_put:NnV #1 { numerator } \l__fracmath_tmp_value_int |
176 |
| -} |
177 |
| - |
178 |
| -% Multiplies a value by an integer |
| 166 | +% Multiplies a value by another value |
| 167 | +% NB: assumes they have been through \fracmath_prepare:N! |
179 | 168 | \cs_new_protected:Nn \fracmath_gmultiply:NN
|
180 | 169 | {
|
181 |
| - \fracmath_pure:N #1 |
182 |
| - \fracmath_pure:N #2 |
| 170 | + \int_zero_new:N \l__fracmath_tmp_value_int |
183 | 171 |
|
184 | 172 | \int_set:Nn \l__fracmath_tmp_value_int
|
185 | 173 | { \prop_item:Nn #1 { numerator } * \prop_item:Nn #2 { numerator } }
|
|
0 commit comments