|
13 | 13 | % styling
|
14 | 14 | fraction~style .cs_set:Np = \fracmath_fraction_handler:nn #1#2 ,
|
15 | 15 | number~style .cs_set:Np = \fracmath_number_handler:n #1 ,
|
| 16 | + aligned .bool_set:N = \l__fracmath_aligned_bool , |
16 | 17 |
|
17 | 18 | % math
|
18 | 19 | reduce .bool_set:N = \l__fracmath_reduce_bool ,
|
|
267 | 268 | }
|
268 | 269 |
|
269 | 270 | \fracmath_format_integer:N #1
|
270 |
| - \fracmath_format_fraction:N #1 |
| 271 | + \bool_if:NTF \l__fracmath_aligned_bool { |
| 272 | + \hbox_to_wd:nn { 0pt } { |
| 273 | + \fracmath_format_fraction:N #1 |
| 274 | + } |
| 275 | + } { |
| 276 | + \fracmath_format_fraction:N #1 |
| 277 | + } |
271 | 278 | }
|
272 | 279 | \cs_generate_variant:Nn \fracmath_format:N
|
273 | 280 | {
|
|
318 | 325 | \fracmath_format:c { g_fracmath_#2_var }
|
319 | 326 | \group_end:
|
320 | 327 | }
|
| 328 | + |
| 329 | +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 330 | +% Column type for tabularray |
| 331 | +% |
| 332 | + |
| 333 | +\keys_define:nn { fractional-math } |
| 334 | +{ |
| 335 | + tabularray~column~type .code = { |
| 336 | + \NewColumnType {#1}[1] { Q[r, cmd=\fracmath_tblr_cell:nn {##1}] } |
| 337 | + } , |
| 338 | +} |
| 339 | + |
| 340 | +\cs_new_protected:Nn \fracmath_tblr_cell:nn |
| 341 | +{ |
| 342 | + \keys_set:nn { fractional-math } { |
| 343 | + aligned, |
| 344 | + #1 |
| 345 | + } |
| 346 | + \str_case:nnF { #2 } { |
| 347 | + { RESULT } { |
| 348 | + \group_begin: |
| 349 | + \keys_set:nn { fractional-math } { reduce } |
| 350 | + \fracmath_format:c { g_fracmath_ \l__fracmath_current_variable_tl _var } |
| 351 | + \group_end: |
| 352 | + } |
| 353 | + { SKIP } { } % nothing |
| 354 | + } { |
| 355 | + \tl_if_head_is_group:nTF { #2 } { |
| 356 | + #2 |
| 357 | + } { |
| 358 | + % format value if no special token was hit |
| 359 | + % do math only once per tblr cell |
| 360 | + % Will https://github.com/lvjr/tabularray/issues/179 introduce |
| 361 | + % eleganter solution? |
| 362 | + \cs_if_exist:cTF { \fracmath__tblr_cell_get_csname: } |
| 363 | + % or use a specific bool, e.g., \fracmath__do_math_bool |
| 364 | + { \tl_clear:N \l__fracmath_current_variable_tl } |
| 365 | + { \cs_gset:cpn { \fracmath__tblr_cell_get_csname: } {} } |
| 366 | + \fracFormat { #2 } |
| 367 | + } |
| 368 | + } |
| 369 | +} |
| 370 | + |
| 371 | +% a csname distinct per tblr table, per cell |
| 372 | +\cs_new:Npn \fracmath__tblr_cell_get_csname: |
| 373 | + { |
| 374 | + fracmath__tblr_ \int_use:N \g__tblr_table_count_int |
| 375 | + _cell_ \int_use:N \c@rownum _ \int_use:N \c@colnum |
| 376 | + : |
| 377 | + } |
0 commit comments