|
152 | 152 | \prop_remove:Nn #1 { denominator }
|
153 | 153 | }
|
154 | 154 | }
|
| 155 | +\cs_generate_variant:Nn \fracmath_to_mixed:N |
| 156 | +{ |
| 157 | + c |
| 158 | +} |
155 | 159 |
|
156 | 160 | % converts a mixed number into an improper fraction, eg "a b/c" => "0 (ac+b)/c"
|
157 | 161 | \cs_new_protected:Nn \fracmath_to_improper:N
|
|
169 | 173 |
|
170 | 174 | \prop_put:Nnn #1 { integer } { 0 }
|
171 | 175 | }
|
| 176 | +\cs_generate_variant:Nn \fracmath_to_improper:N |
| 177 | +{ |
| 178 | + c |
| 179 | +} |
172 | 180 |
|
173 | 181 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
174 | 182 | % Arithmetic
|
|
244 | 252 | % Formatting
|
245 | 253 | %
|
246 | 254 |
|
| 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 | + |
247 | 262 | \cs_new_protected:Nn \fracmath_format_integer:N
|
248 | 263 | {
|
249 | 264 | \prop_get:NnNT #1 { integer } \l__fracmath_tmp_value_tl {
|
|
261 | 276 | }
|
262 | 277 | }
|
263 | 278 |
|
264 |
| -\cs_new_protected:Nn \fracmath_format:N |
| 279 | +\cs_new_protected:Nn \fracmath_format_regular:N |
265 | 280 | {
|
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 | +} |
269 | 285 |
|
| 286 | +\cs_new_protected:Nn \fracmath_format_aligned:N |
| 287 | +{ |
| 288 | + \fracmath_format_prepare:N #1 |
270 | 289 | \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 | +{ |
271 | 301 | \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 |
275 | 303 | } {
|
276 |
| - \fracmath_format_fraction:N #1 |
| 304 | + \fracmath_format_regular:N #1 |
277 | 305 | }
|
278 | 306 | }
|
279 | 307 | \cs_generate_variant:Nn \fracmath_format:N
|
|
0 commit comments