Skip to content

Commit 4da8f5c

Browse files
committed
Add 'aligned' & 'tabularray column type' keys
1 parent 7ad0f50 commit 4da8f5c

File tree

1 file changed

+58
-1
lines changed

1 file changed

+58
-1
lines changed

latex/fractional-math.sty

+58-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
% styling
1414
fraction~style .cs_set:Np = \fracmath_fraction_handler:nn #1#2 ,
1515
number~style .cs_set:Np = \fracmath_number_handler:n #1 ,
16+
aligned .bool_set:N = \l__fracmath_aligned_bool ,
1617

1718
% math
1819
reduce .bool_set:N = \l__fracmath_reduce_bool ,
@@ -267,7 +268,13 @@
267268
}
268269

269270
\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+
}
271278
}
272279
\cs_generate_variant:Nn \fracmath_format:N
273280
{
@@ -318,3 +325,53 @@
318325
\fracmath_format:c { g_fracmath_#2_var }
319326
\group_end:
320327
}
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

Comments
 (0)