Skip to content

Commit 0e926a7

Browse files
committed
Split _format functions out
1 parent 1460ede commit 0e926a7

File tree

2 files changed

+38
-8
lines changed

2 files changed

+38
-8
lines changed

latex/fractional-math.sty

+36-8
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,10 @@
152152
\prop_remove:Nn #1 { denominator }
153153
}
154154
}
155+
\cs_generate_variant:Nn \fracmath_to_mixed:N
156+
{
157+
c
158+
}
155159

156160
% converts a mixed number into an improper fraction, eg "a b/c" => "0 (ac+b)/c"
157161
\cs_new_protected:Nn \fracmath_to_improper:N
@@ -169,6 +173,10 @@
169173

170174
\prop_put:Nnn #1 { integer } { 0 }
171175
}
176+
\cs_generate_variant:Nn \fracmath_to_improper:N
177+
{
178+
c
179+
}
172180

173181
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
174182
% Arithmetic
@@ -244,6 +252,13 @@
244252
% Formatting
245253
%
246254

255+
\cs_new_protected:Nn \fracmath_format_prepare:N
256+
{
257+
\bool_if:NT \l__fracmath_reduce_bool {
258+
\fracmath_to_mixed:N #1
259+
}
260+
}
261+
247262
\cs_new_protected:Nn \fracmath_format_integer:N
248263
{
249264
\prop_get:NnNT #1 { integer } \l__fracmath_tmp_value_tl {
@@ -261,19 +276,32 @@
261276
}
262277
}
263278

264-
\cs_new_protected:Nn \fracmath_format:N
279+
\cs_new_protected:Nn \fracmath_format_regular:N
265280
{
266-
\bool_if:NT \l__fracmath_reduce_bool {
267-
\fracmath_to_mixed:N #1
268-
}
281+
\fracmath_format_prepare:N #1
282+
\fracmath_format_integer:N #1
283+
\fracmath_format_fraction:N #1
284+
}
269285

286+
\cs_new_protected:Nn \fracmath_format_aligned:N
287+
{
288+
\fracmath_format_prepare:N #1
270289
\fracmath_format_integer:N #1
290+
\hbox_to_zero:n {
291+
\fracmath_format_fraction:N #1
292+
}
293+
}
294+
\cs_generate_variant:Nn \fracmath_format_aligned:N
295+
{
296+
c
297+
}
298+
299+
\cs_new_protected:Nn \fracmath_format:N
300+
{
271301
\bool_if:NTF \l__fracmath_aligned_bool {
272-
\hbox_to_wd:nn { 0pt } {
273-
\fracmath_format_fraction:N #1
274-
}
302+
\fracmath_format_aligned:N #1
275303
} {
276-
\fracmath_format_fraction:N #1
304+
\fracmath_format_regular:N #1
277305
}
278306
}
279307
\cs_generate_variant:Nn \fracmath_format:N

tests/test.tex

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727

2828
\logtime{number 1+3halv reduce = 2.5} \hfill \fracFormat[reduce]{1 3/2}
2929

30+
\logtime{number 1+3halv reduce = 2.5, aligned} \hfill \fracFormat[reduce,aligned]{1 3/2}
31+
3032
math
3133

3234
\begingroup

0 commit comments

Comments
 (0)