|
58 | 58 | V
|
59 | 59 | }
|
60 | 60 |
|
61 |
| -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
62 |
| -% Helpers |
63 |
| -% |
64 |
| - |
65 |
| -\cs_new_protected:Nn \fracmath_gcd:nn |
66 |
| -{ |
67 |
| - \int_if_zero:nTF { #2 } |
68 |
| - { #1 } |
69 |
| - { \fracmath_gcd:nn { #2 } { \int_mod:nn { #1 } { #2 } } } |
70 |
| -} |
71 |
| - |
72 |
| -\cs_new_protected:Nn \fracmath_reduce_fraction:NN |
73 |
| -{ |
74 |
| - \int_set:Nn \l_tmpa_int { \fracmath_gcd:nn { #1 } { #2 } } |
75 |
| - \int_set:Nn #1 { #1 / \l_tmpa_int } |
76 |
| - \int_set:Nn #2 { #2 / \l_tmpa_int } |
77 |
| -} |
78 | 61 |
|
79 | 62 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
80 | 63 | % Parsing
|
|
185 | 168 | \prop_gput:NnV #1 { denominator } \l__fracmath_tmp_value_int
|
186 | 169 | }
|
187 | 170 |
|
188 |
| -% Reduces a value, eg 1 6/4 => 2 1/2 |
189 |
| -\cs_new_protected:Nn \fracmath_reduce:N |
| 171 | +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 172 | +% User commands |
| 173 | +% |
| 174 | + |
| 175 | +\cs_new_protected:Nn \fracmath_gcd:nn |
190 | 176 | {
|
191 |
| - \int_zero_new:N \l__fracmath_tmp_value_int |
192 |
| - \prop_get:NnNT #1 { integer } \l__fracmath_tmp_value_tl { |
193 |
| - \int_set:Nn \l__fracmath_tmp_value_int { \l__fracmath_tmp_value_tl } |
194 |
| - } |
| 177 | + \int_if_zero:nTF { #2 } |
| 178 | + { #1 } |
| 179 | + { \fracmath_gcd:nn { #2 } { \int_mod:nn { #1 } { #2 } } } |
| 180 | +} |
195 | 181 |
|
196 |
| - \prop_get:NnNT #1 { numerator } \l__fracmath_tmp_numerator_tl { |
197 |
| - \prop_get:NnN #1 { denominator } \l__fracmath_tmp_denominator_tl |
| 182 | +\cs_new_protected:Nn \fracmath_reduce_fraction:NN |
| 183 | +{ |
| 184 | + \int_set:Nn \l_tmpa_int { \fracmath_gcd:nn { #1 } { #2 } } |
| 185 | + \int_set:Nn #1 { #1 / \l_tmpa_int } |
| 186 | + \int_set:Nn #2 { #2 / \l_tmpa_int } |
| 187 | +} |
198 | 188 |
|
199 |
| - \int_zero_new:N \l__fracmath_tmp_numerator_int |
200 |
| - \int_zero_new:N \l__fracmath_tmp_denominator_int |
201 |
| - \int_set:Nn \l__fracmath_tmp_numerator_int { \l__fracmath_tmp_numerator_tl } |
202 |
| - \int_set:Nn \l__fracmath_tmp_denominator_int { \l__fracmath_tmp_denominator_tl } |
| 189 | +% Reduces a value, eg "1 6/4" => "2 1/2" |
| 190 | +\cs_new_protected:Nn \fracmath_reduce:N |
| 191 | +{ |
| 192 | + \fracmath_prepare:N #1 |
203 | 193 |
|
204 |
| - \int_while_do:nn { \l__fracmath_tmp_numerator_int >= \l__fracmath_tmp_denominator_int } { |
205 |
| - \int_add:Nn \l__fracmath_tmp_value_int { 1 } |
206 |
| - \int_sub:Nn \l__fracmath_tmp_numerator_int { \l__fracmath_tmp_denominator_int } |
207 |
| - } |
| 194 | + \int_zero_new:N \l__fracmath_tmp_integer_int |
| 195 | + \int_zero_new:N \l__fracmath_tmp_numerator_int |
| 196 | + \int_zero_new:N \l__fracmath_tmp_denominator_int |
| 197 | + \int_set:Nn \l__fracmath_tmp_numerator_int { \prop_item:Nn #1 { numerator } } |
| 198 | + \int_set:Nn \l__fracmath_tmp_denominator_int { \prop_item:Nn #1 { denominator } } |
208 | 199 |
|
209 |
| - \prop_put:NnV #1 { integer } \l__fracmath_tmp_value_int |
210 |
| - \int_compare:nNnTF { \l__fracmath_tmp_numerator_int } > {0} { |
211 |
| - \fracmath_reduce_fraction:NN \l__fracmath_tmp_numerator_int \l__fracmath_tmp_denominator_int |
212 |
| - \prop_put:NnV #1 { numerator } \l__fracmath_tmp_numerator_int |
213 |
| - \prop_put:NnV #1 { denominator } \l__fracmath_tmp_denominator_int |
214 |
| - } { |
215 |
| - \prop_remove:Nn #1 { numerator } |
216 |
| - \prop_remove:Nn #1 { denominator } |
217 |
| - } |
| 200 | + \int_while_do:nn { \l__fracmath_tmp_numerator_int >= \l__fracmath_tmp_denominator_int } { |
| 201 | + \int_add:Nn \l__fracmath_tmp_integer_int { 1 } |
| 202 | + \int_sub:Nn \l__fracmath_tmp_numerator_int { \l__fracmath_tmp_denominator_int } |
| 203 | + } |
| 204 | + |
| 205 | + \prop_put:NnV #1 { integer } \l__fracmath_tmp_integer_int |
| 206 | + \int_compare:nNnTF { \l__fracmath_tmp_numerator_int } > {0} { |
| 207 | + \fracmath_reduce_fraction:NN |
| 208 | + \l__fracmath_tmp_numerator_int |
| 209 | + \l__fracmath_tmp_denominator_int |
| 210 | + \prop_put:NnV #1 { numerator } \l__fracmath_tmp_numerator_int |
| 211 | + \prop_put:NnV #1 { denominator } \l__fracmath_tmp_denominator_int |
| 212 | + } { |
| 213 | + \prop_remove:Nn #1 { numerator } |
| 214 | + \prop_remove:Nn #1 { denominator } |
218 | 215 | }
|
219 | 216 | }
|
220 | 217 |
|
|
0 commit comments