lvjr
lvjr
Please provide a minimal compilable example.
As a workaround, you can rollback to 2024A with `\usepackage{tabularray}[=v2024]` (In 2024A you need to use `\NewTableCommand` instead of `\NewTblrTableCommand`).
You only need to use `\tblr_set_cell:nn` rather than `\tblr_set_cell:nnnn` if you wants to set current cell: ```latex \documentclass{article} \usepackage{tabularray} \ExplSyntaxOn \NewTblrTableCommand \tablegroup { \tblr_set_cell:nn {c=\thecolcount} {} } \ExplSyntaxOff \begin{document} \begin{tblr}{...
You may try the following workaround: ```latex \documentclass{article} \usepackage{tabularray} \ExplSyntaxOn \NewTblrTableCommand \tablegroup { \tblr_set_cell:nnnn {0+\therownum} {0+\thecolnum} {c=\thecolcount} {} } \ExplSyntaxOff \begin{document} \begin{tblr}{ hlines,vlines } \therownum & \thecolnum & \arabic{rownum} &...
Here is a minimal example based on @Sophanatprime's comment on https://github.com/CTeX-org/ctex-kit/issues/658. ```latex \documentclass{article} \usepackage{tabularray} \begin{document} \newcommand\jzbreak{\hskip0pt plus 5pt\penalty-100\hskip0pt plus-5pt\relax} \begin{tblr}{hlines, vlines, columns={0.2\textwidth, l, appto=\jzbreak}} % tabularray 12 12 12 12...
I have documented this limitation.
This reminds me of issue #270. I could solve both #400 and #402 with the new `keyvalue` library. So I only need to add two commands `\SetAllTblrInner` and `\SetAllTblrOuter` and...
I will close this since it is unclear.
You can not use letters in two dimensional indexes (which needs to be documented), but will be able to use negative indexes in them with a future release (see issue...
@FrankMittelbach It is easy to fix this in `tabularray`. But I am confused about when a package should or should not follow the changes (by a class, another package or...