Skip to content

Commit de91c18

Browse files
committed
\fracmath_reduce:N assume improper fractions
1 parent af3d109 commit de91c18

File tree

1 file changed

+39
-42
lines changed

1 file changed

+39
-42
lines changed

latex/fractional-math.sty

+39-42
Original file line numberDiff line numberDiff line change
@@ -58,23 +58,6 @@
5858
V
5959
}
6060

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-
}
7861

7962
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
8063
% Parsing
@@ -185,36 +168,50 @@
185168
\prop_gput:NnV #1 { denominator } \l__fracmath_tmp_value_int
186169
}
187170

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
190176
{
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+
}
195181

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+
}
198188

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
203193

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 } }
208199

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 }
218215
}
219216
}
220217

0 commit comments

Comments
 (0)