lvjr

Results 160 comments of lvjr

不错。其中 `\NewContentCommand` 用于在表格内重定义已有的命令。如果 `\tikzbox` 这个命令没有任何宏包用过,也可以直接用 `\NewDocumentCommand` 来定义它。

如果用表格来处理的话,第一种情形对应于 `longtable` 或 `longtblr`,而第二种情形对应于 `supertabular`。 ```latex \documentclass{ctexart} \usepackage[paperheight=8em,height=7em]{geometry} \usepackage{supertabular,longtable} \setlength\parindent{0pt} \begin{document} The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The...

It would be quite handy to provide a child selector `every` for Nth row customization. - `every{3}` selects children with index of the form `1+3x` - `every[2]{3}` selects children with...

You may insert some `\vspace` before the `\section` or `\subsection` in preparing a minimal example.

From a comment of Phelype Oleinik > @pddzaic There's not really a bug to fix. `l3regex` uses toks registers to do its job, but there are only 65535 of those...

From the code we see ```latex \cs_new_protected:Npn \__tblr_split_table_to_lines:NN #1 #2 { \__tblr_insert_braces:N #1 \seq_set_split:NnV \l_tmpa_seq { \\ } #1 ... } ``` I assume `\seq_set_split` doesn't depend on `l3regex`. So...

You may try `hspan=minimal` option (see the manual).

Actually, the latest source code of `tabularray` doesn't use `environ` package.

It would be very nice if xparse would provide verbatim environment. In my [`codehigh`](https://ctan.org/pkg/codehigh) package, I need to collect verbatim body of the environment into a `tl`, then parse and...

@davidcarlisle So far so good, with the latest code of `colortbl` and `tabularray`.