Skip to content

Commit 6db1779

Browse files
committed
Arithmetic: assume improper fractions
1 parent 28e9574 commit 6db1779

File tree

1 file changed

+17
-29
lines changed

1 file changed

+17
-29
lines changed

latex/fractional-math.sty

+17-29
Original file line numberDiff line numberDiff line change
@@ -126,31 +126,30 @@
126126

127127
\cs_new_protected:Nn \fracmath_garithmetic:NnN
128128
{
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:
140142
}
141143
\cs_generate_variant:Nn \fracmath_garithmetic:NnN
142144
{
143145
cnN, cVN
144146
}
145147

146148
% Adds or subtracts two values
149+
% NB: assumes they have been through \fracmath_prepare:N!
147150
\cs_new_protected:Nn \fracmath_gsum:NnN
148151
{
149152
\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
154153

155154
\int_set:Nn \l__fracmath_tmp_value_int {
156155
( \prop_item:Nn #1 { numerator } * \prop_item:Nn #3 { denominator } ) #2
@@ -164,22 +163,11 @@
164163
\prop_gput:NnV #1 { denominator } \l__fracmath_tmp_value_int
165164
}
166165

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!
179168
\cs_new_protected:Nn \fracmath_gmultiply:NN
180169
{
181-
\fracmath_pure:N #1
182-
\fracmath_pure:N #2
170+
\int_zero_new:N \l__fracmath_tmp_value_int
183171

184172
\int_set:Nn \l__fracmath_tmp_value_int
185173
{ \prop_item:Nn #1 { numerator } * \prop_item:Nn #2 { numerator } }

0 commit comments

Comments
 (0)