diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..e13441e --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.tlg text !eol \ No newline at end of file diff --git a/.github/workflows/latex-package.txt b/.github/workflows/latex-package.txt new file mode 100644 index 0000000..39aa30b --- /dev/null +++ b/.github/workflows/latex-package.txt @@ -0,0 +1,42 @@ +# these packages are collected from tabularray.sty and its test files +# to update all needed texlive packages from this file +# run `texfindpkg -i latex-package.txt -o texlive-package.txt` + +-f # the following are latex packages +amsfonts +amsmath +array +blindtext +booktabs +diagbox +enumitem +environ +epstopdf-base +etoolbox +functional +geometry +hyperref +l3kernel +lmodern +mathtools +multirow +nameref +ninecolors +pict2e +shortvrb +siunitx +tabularx +varwidth +xcolor +xparse +zref + +-p # the following are texlive packages +cm-super # for ppmcheckpdf on table-011 which contains itemize env hence \textbullet +ec +l3build +latex-bin # depends on latex +luatex +pdftex +ppmcheckpdf +xetex diff --git a/.github/workflows/texlive-package.txt b/.github/workflows/texlive-package.txt new file mode 100644 index 0000000..d47b926 --- /dev/null +++ b/.github/workflows/texlive-package.txt @@ -0,0 +1,52 @@ +amsfonts +amsmath +atveryend +auxhook +bigintcalc +blindtext +booktabs +cm-super +colortbl +diagbox +ec +enumitem +environ +epstopdf-pkg +etoolbox +fp +functional +geometry +graphics +hyperref +iftex +infwarerr +kvoptions +kvsetkeys +l3build +l3packages +latex +latex-bin +lm +ltxcmds +luatex +mathtools +multirow +ninecolors +pdfescape +pdftex +pdftexcmds +pict2e +ppmcheckpdf +refcount +rerunfilecheck +siunitx +stringenc +tools +translations +trimspaces +uniquecounter +url +varwidth +xcolor +xetex +zref \ No newline at end of file diff --git a/.github/workflows/texlive.package b/.github/workflows/texlive.package deleted file mode 100644 index c23cb53..0000000 --- a/.github/workflows/texlive.package +++ /dev/null @@ -1,133 +0,0 @@ -adobemapping -amscls -amsfonts -amsmath -atbegshi -atveryend -auxhook -beamer -bibunits -bigintcalc -bitset -blindtext -booktabs -caption -carlisle -cjk -cjkpunct -cjkutils -cleveref -cm -# for ppmcheck on table-011 which contains itemize env hence \textbullet -cm-super -ctablestack -currfile -diagbox -dvipdfmx -ec -enumitem -environ -epstopdf-pkg -eso-pic -etex -etexcmds -etoolbox -euenc -everyhook -everysel -fancyhdr -fandol -filehook -fontaxes -fontspec -footmisc -functional -geometry -gettitlestring -graphics -graphics-cfg -graphics-def -hycolor -hyperref -iftex -infwarerr -intcalc -kastrup -koma-script -kvdefinekeys -kvoptions -kvsetkeys -l3build -l3experimental -l3kernel -l3packages -latex-bin -letltxmacro -lm -lm-math -ltxcmds -lualatex-math -lualibs -luaotfload -luatex -luatex85 -luatexbase -luatexja -mathtools -metafont -mfware -multirow -mweights -natbib -newtx -ninecolors -notoccite -ntheorem -oberdiek -pdfescape -pdflscape -pdfpages -pdftexcmds -pgf -pict2e -pkuthss -platex-tools -ppmcheckpdf -psnfss -refcount -rerunfilecheck -sansmathaccent -setspace -siunitx -soul -svn-prov -tex -tex-gyre -tex-gyre-math -tex-ini-files -thuthesis -titlesec -tocloft -tools -translator -trimspaces -txfonts -ucharcat -ulem -unicode-data -unicode-math -uniquecounter -uplatex -url -varwidth -xcolor -xecjk -xetex -xits -xkeyval -xstring -xunicode -zhmetrics -zhmetrics-uptex -zhnumber -zref \ No newline at end of file diff --git a/.github/workflows/texlive.yml b/.github/workflows/texlive.yml index 1c7e0ef..c8149e6 100644 --- a/.github/workflows/texlive.yml +++ b/.github/workflows/texlive.yml @@ -16,7 +16,7 @@ jobs: - name: Install TeX Live uses: teatimeguest/setup-texlive-action@v3 with: - package-file: .github/workflows/texlive.package + package-file: .github/workflows/texlive-package.txt update-all-packages: true - name: Test tabularray with l3build run: | @@ -34,7 +34,7 @@ jobs: - name: Install TeX Live uses: teatimeguest/setup-texlive-action@v3 with: - package-file: .github/workflows/texlive.package + package-file: .github/workflows/texlive-package.txt update-all-packages: true - name: Test tabularray with l3build run: | diff --git a/CONTRIBUTING.txt b/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.txt rename to CONTRIBUTING.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..45da754 --- /dev/null +++ b/README.md @@ -0,0 +1,42 @@ +# The LaTeX3 package `tabularray` + +``` +Package: Typeset tabulars and arrays with LaTeX3 +Copyright: 2021-2024 (c) Jianrui Lyu +Copyright: 2023-2024 (c) Yukai Chou +CTAN: https://ctan.org/pkg/tabularray +Repository: https://github.com/lvjr/tabularray +Repository: https://bitbucket.org/lvjr/tabularray +License: The LaTeX Project Public License 1.3c +``` + +## 1\. Introduction + +LaTeX tables are implemented using TeX commands such as `\halign`, `\noalign`, `\span`, and `\omit`. +In order to implement new features, many macro packages have modified the inner table commands inside LaTeX. +This makes package code complicated, difficult to maintain, and often conflicts with each other. + +At present, the LaTeX3 programming layer is basically mature. +This `tabularray` package will discard the old `\halign` commands and directly use LaTeX3 functions to parse the table, +and then typeset the entire table. +Under the premise of being compatible with the basic syntax of LaTeX2 tables, +this macro package will completely separate the contents and styles of the table, +and the styles of the table can be completely set in key-value way. + +## 2\. Contributing + +To make the upcoming releases more stable, you are very welcome to test the latest package file in the repository. +To test it, you only need to download [`tabularray.sty`](https://github.com/lvjr/tabularray/raw/main/tabularray.sty) +and put it into the folder of your TeX documents. + +If you want to make a contribution to `tabularray` package, you can get necessary informations from [CONTRIBUTING.md](https://github.com/lvjr/tabularray/blob/main/CONTRIBUTING.md) file. +The following are all contributors to the package: + + - [dbitouze](https://github.com/lvjr/tabularray/commits?author=dbitouze) (Denis Bitouzé) + - [IsaacOscar](https://github.com/lvjr/tabularray/commits?author=IsaacOscar) (Isaac Oscar Gariano) + - [krlmlr](https://github.com/lvjr/tabularray/commits?author=krlmlr) (Kirill Müller) + - [mbertucci47](https://github.com/lvjr/tabularray/commits?author=mbertucci47) (Matthew Bertucci) + - [pkl97](https://github.com/lvjr/tabularray/commits?author=pkl97) + - [qinglee](https://github.com/lvjr/tabularray/commits?author=qinglee) (Qing Lee) + - [SainoNamkho](https://github.com/lvjr/tabularray/commits?author=SainoNamkho) + - [Yodude2002](https://github.com/lvjr/tabularray/commits?author=Yodude2002) diff --git a/README.txt b/README.txt deleted file mode 100644 index 1dc3aa0..0000000 --- a/README.txt +++ /dev/null @@ -1,6 +0,0 @@ -Package: Typeset tabulars and arrays with LaTeX3 -Copyright: 2021-2024 (c) Jianrui Lyu -CTAN: https://ctan.org/pkg/tabularray -Repository: https://github.com/lvjr/tabularray -Repository: https://bitbucket.org/lvjr/tabularray -License: The LaTeX Project Public License 1.3c diff --git a/manual/manual-3.tex b/manual/manual-3.tex index ff61be2..2127820 100644 --- a/manual/manual-3.tex +++ b/manual/manual-3.tex @@ -166,20 +166,6 @@ \subsection{Hspan and Vspan Algorithms} \end{tblr} \end{demohigh} -\subsection{Use Verbatim Commands} - -%With \verb!verb! key, you can write \verb!\verb! commands in the cell text: -% -%\begin{demohigh} -%\begin{tblr}{hlines,verb} -% 20 & 30 & \verb!\hello{world}!40 \\ -% 50 & \verb!\hello!60 & 70 \\ -%\end{tblr} -%\end{demohigh} - -The inner key \verb!verb! is obsolete from version 2023A, and will be removed in the future. -Instead you can use more reliable \verb!\fakeverb! command (see Section \ref{sec:fakeverb}). - \subsection{Set Baseline for the Table} With \verb!baseline! key, you can set baseline for the table. diff --git a/manual/manual-6.tex b/manual/manual-6.tex index aa9a29a..d4dce04 100644 --- a/manual/manual-6.tex +++ b/manual/manual-6.tex @@ -29,9 +29,9 @@ \section{Control Horizontal Alignment} \section{Use Safe Verbatim Commands}% \label{sec:fakeverb} -Due to the limitation of TeX, even if you have passed \texttt{verb} option to a -\texttt{tabularray} table, you still could not use some special characters in a -\verb!\verb! command. As an replacement, you may use \verb|\fakeverb| command from \href{https://www.ctan.org/pkg/codehigh}{\texttt{codehigh}} package. +Due to the limitations of TeX, +we are not able to make \fakeverb{\verb} command behave well inside \texttt{tabularray} tables. +As a replacement, you may use \fakeverb{\fakeverb} command from \href{https://www.ctan.org/pkg/codehigh}{\texttt{codehigh}} package. The \verb|\fakeverb| command will remove the backslashes in the following control symbols before typesetting its content: \fakeverb{\\\\}, \fakeverb{\\\{}, \fakeverb{\\\}}, \fakeverb{\\\#}, \fakeverb{\\\^} and \texttt{\textbackslash\textvisiblespace}, \fakeverb{\\\%}. diff --git a/tabularray.sty b/tabularray.sty index 4455275..6c4fdd1 100644 --- a/tabularray.sty +++ b/tabularray.sty @@ -1,7 +1,8 @@ %%% % -*- coding: utf-8 -*- %%% ---------------------------------------------------------------------------- %%% Tabularray: Typeset tabulars and arrays with LaTeX3 -%%% Copyright : 2021-2023 (c) Jianrui Lyu +%%% Copyright : 2021-2024 (c) Jianrui Lyu +%%% Copyright : 2023-2024 (c) Yukai Chou %%% Repository: https://github.com/lvjr/tabularray %%% License : The LaTeX Project Public License 1.3c %%% ---------------------------------------------------------------------------- @@ -1189,8 +1190,8 @@ %%> \section{Set Hlines and Vlines} %%% -------------------------------------------------------- -\tl_const:Nn \@tblr@dash { dash } -\tl_const:Nn \@tblr@text { text } +\quark_new:N \q__tblr_dash +\quark_new:N \q__tblr_text \regex_const:Nn \c__tblr_is_color_key_regex { ^[A-Za-z] } @@ -1255,7 +1256,8 @@ { \group_begin: \keys_set_groups:nnn { tblr-hline } { text } {#3} - \tl_if_eq:NnF \l__tblr_hline_dash_tl { \exp_not:N \@tblr@text } + % true if "text=" is set + \tl_if_eq:NNF \l__tblr_hline_dash_tl \q__tblr_text { \__tblr_set_hline_num:n {#1} \tl_clear:N \l__tblr_hline_dash_tl @@ -1331,8 +1333,8 @@ \keys_define:nn { tblr-hline } { - dash .code:n = \tl_set:Nn \l__tblr_hline_dash_tl { \exp_not:N \@tblr@dash #1 }, - text .code:n = \tl_set:Nn \l__tblr_hline_dash_tl { \exp_not:N \@tblr@text #1 }, + dash .code:n = \tl_set:Nn \l__tblr_hline_dash_tl { \q__tblr_dash #1 }, + text .code:n = \tl_set:Nn \l__tblr_hline_dash_tl { \q__tblr_text #1 }, text .groups:n = { text }, wd .code:n = \tl_set:Nn \l__tblr_hline_wd_tl { \dim_eval:n {#1} }, fg .code:n = \tl_set:Nn \l__tblr_hline_fg_tl {#1}, @@ -1351,7 +1353,7 @@ \cs_new_protected:Npn \__tblr_hline_unknown_key:n #1 { \prop_if_in:NnTF \g__tblr_defined_hdash_styles_prop {#1} - { \tl_set:Nn \l__tblr_hline_dash_tl { \exp_not:N \@tblr@dash #1 } } + { \tl_set:Nn \l__tblr_hline_dash_tl { \q__tblr_dash #1 } } { \regex_match:NnTF \c__tblr_is_color_key_regex {#1} { \tl_set:Nn \l__tblr_hline_fg_tl {#1} } @@ -1368,7 +1370,9 @@ \__tblr_get_childs:nx {#1} { \int_use:N \c@colcount } \clist_map_inline:Nn \l_tblr_childs_clist { - \__tblr_set_hline_option:nnn { ##1 } { @dash } { \l__tblr_hline_dash_tl } + % prevent expansion of vline text (see issue #303) + \__tblr_set_hline_option:nnn { ##1 } { @dash } + { \exp_not:V \l__tblr_hline_dash_tl } \tl_if_empty:NF \l__tblr_hline_wd_tl { \__tblr_set_hline_option:nnn { ##1 } { wd } { \l__tblr_hline_wd_tl } @@ -1497,7 +1501,8 @@ { \group_begin: \keys_set_groups:nnn { tblr-vline } { text } {#3} - \tl_if_eq:NnF \l__tblr_vline_dash_tl { \exp_not:N \@tblr@text } + % true if "text=" is set + \tl_if_eq:NNF \l__tblr_vline_dash_tl \q__tblr_text { \__tblr_set_vline_num:n {#1} \tl_clear:N \l__tblr_vline_dash_tl @@ -1573,8 +1578,8 @@ \keys_define:nn { tblr-vline } { - dash .code:n = \tl_set:Nn \l__tblr_vline_dash_tl { \exp_not:N \@tblr@dash #1 }, - text .code:n = \tl_set:Nn \l__tblr_vline_dash_tl { \exp_not:N \@tblr@text #1 }, + dash .code:n = \tl_set:Nn \l__tblr_vline_dash_tl { \q__tblr_dash #1 }, + text .code:n = \tl_set:Nn \l__tblr_vline_dash_tl { \q__tblr_text #1 }, text .groups:n = { text }, wd .code:n = \tl_set:Nn \l__tblr_vline_wd_tl { \dim_eval:n {#1} }, fg .code:n = \tl_set:Nn \l__tblr_vline_fg_tl {#1}, @@ -1586,7 +1591,7 @@ \cs_new_protected:Npn \__tblr_vline_unknown_key:n #1 { \prop_if_in:NnTF \g__tblr_defined_vdash_styles_prop {#1} - { \tl_set:Nn \l__tblr_vline_dash_tl { \exp_not:N \@tblr@dash #1 } } + { \tl_set:Nn \l__tblr_vline_dash_tl { \q__tblr_dash #1 } } { \regex_match:NnTF \c__tblr_is_color_key_regex {#1} { \tl_set:Nn \l__tblr_vline_fg_tl {#1} } @@ -1605,7 +1610,8 @@ { \__tblr_spec_gput:nee { vline } { [##1][\int_use:N \c@colnum](\l__tblr_vline_num_tl) / @dash } - { \l__tblr_vline_dash_tl } + % prevent expansion of vline text (see issue #303) + { \exp_not:V \l__tblr_vline_dash_tl } \tl_if_empty:NF \l__tblr_vline_wd_tl { \__tblr_spec_gput:nee { vline } @@ -3050,7 +3056,6 @@ } \tl_new:N \l__tblr_inner_spec_measure_tl -\tl_new:N \l__tblr_inner_spec_verb_tl \cs_new_protected:Npn \__tblr_init_table_inner_spec: { @@ -3099,7 +3104,6 @@ { [\int_eval:n { \c@colcount + 1}] / ##1 } {##2} } \tl_clear:N \l__tblr_inner_spec_measure_tl - \tl_clear:N \l__tblr_inner_spec_verb_tl \keys_set:nv { tblr } { l__tblr_default_ \l__tblr_env_name_tl _inner_tl } } @@ -3113,7 +3117,7 @@ colspec, rowspec, column, row, cell, hline, vline, hborder, vborder, width, rowhead, rowfoot, columns, rows, cells, hlines, vlines, % hborders, vborders, leftsep, rightsep, colsep, abovesep, belowsep, rowsep, rulesep, - baseline, hspan, vspan, stretch, verb, delimiter + baseline, hspan, vspan, stretch, delimiter } \keys_define:nn { tblr } @@ -3124,8 +3128,6 @@ hspan .code:n = \__tblr_keys_gput:nn { hspan } {#1}, vspan .code:n = \__tblr_keys_gput:nn { vspan } {#1}, stretch .code:n = \__tblr_keys_gput:nn { stretch } {#1}, - verb .tl_set:N = \l__tblr_inner_spec_verb_tl, - verb .default:n = lite, columns .code:n = \__tblr_set_every_column_aux:n {#1}, rows .code:n = \__tblr_set_every_row_aux:n {#1}, cells .code:n = \__tblr_set_every_cell_aux:n {#1}, @@ -3445,9 +3447,8 @@ \tl_if_empty:NF \l__tblr_w_tl { \dim_set:Nn \rulewidth { \l__tblr_w_tl } } \tl_set:Nx \l__tblr_d_tl { \__tblr_spec_item:ne { vline } { [#1][#2](#3) / @dash } } - \tl_set:Nx \l__tblr_a_tl { \tl_head:N \l__tblr_d_tl } \tl_set:Nx \l__tblr_b_tl { \tl_tail:N \l__tblr_d_tl } - \exp_args:NV \tl_if_eq:NNTF \l__tblr_a_tl \@tblr@dash + \tl_if_head_eq_meaning:VNTF \l__tblr_d_tl \q__tblr_dash { \__tblr_get_vline_dash_style:N \l__tblr_b_tl \xleaders \l__tblr_b_tl \vfil @@ -3515,7 +3516,7 @@ { \__tblr_spec_item:ne { hline } { [#1][#2](#3) / @dash } } \tl_set:Nx \l__tblr_a_tl { \tl_head:N \l__tblr_d_tl } \tl_set:Nx \l__tblr_b_tl { \tl_tail:N \l__tblr_d_tl } - \exp_args:NV \tl_if_eq:NNTF \l__tblr_a_tl \@tblr@dash + \tl_if_head_eq_meaning:VNTF \l__tblr_d_tl \q__tblr_dash { \__tblr_get_hline_dash_style:N \l__tblr_b_tl \xleaders \l__tblr_b_tl \hfil @@ -3780,7 +3781,7 @@ \begin{tblrNoHyper} \begin{varwidth}{\paperwidth} \l__tblr_f_tl - \__tblr_rescan_cell_tokens:N \l__tblr_c_tl + \l__tblr_c_tl \end{varwidth} \end{tblrNoHyper} } @@ -3799,7 +3800,7 @@ \hbox_set:Nn \l__tblr_measured_cell_box { \l__tblr_f_tl - \__tblr_rescan_cell_tokens:N \l_tmpa_tl + \l_tmpa_tl } \tl_set:Nx \l__tblr_w_tl { \dim_max:nn { \l__tblr_w_tl } { \box_wd:N \l__tblr_measured_cell_box } } @@ -3867,24 +3868,6 @@ { \hbox_unpack_drop:N \l__tblr_measured_cell_box } } -%% When using verb option, there is an end-of-line character at the end. -%% This character causes extra horizontal space at the end when "measure=hbox", -%% or causes extra vertical space at the end with "measure=vbox". -%% Therefore we have to use an \empty to remove it. -%% See https://tex.stackexchange.com/q/213659 -\cs_new_protected:Npn \__tblr_rescan_cell_tokens:N #1 - { - \tl_if_empty:NTF \l__tblr_inner_spec_verb_tl - { #1 } - { - %% insert space characters after some control sequences first (issue #112) - \regex_replace_all:nnN { (\c{[A-Za-z]*}) ([A-Za-z]) } { \1 \ \2 } #1 - \regex_replace_all:nnN { . } { \c{string} \0 } #1 - \tl_set:Nx #1 { #1 \noexpand \empty } - \exp_args:NV \tex_scantokens:D #1 - } - } - %% #1: total height dimension; #2: head dimension; #3: foot dimension; %% #4: tl for resulting upper size; #5: tl for resulting lower size @@ -4129,13 +4112,17 @@ \LogTblrTracing { target } } +%% Users may modify \hfuzz, so we use our hfuzz dim variable (see issue #445) +\dim_new:N \l__tblr_hfuzz_dim +\dim_set:Nn \l__tblr_hfuzz_dim { 0.1pt } + %% If all columns have negative coefficients and small natural widths, %% \l__tblr_column_coefficient_prop will be empty after one or more rounds. %% We reset @row-height, etc for \linewidth graphics in X columns (issue #80) \cs_new_protected:Npn \__tblr_adjust_extendable_column_width: { \bool_while_do:nn - { \dim_compare_p:nNn { \l__tblr_column_target_dim } > { \hfuzz } } + { \dim_compare_p:nNn { \l__tblr_column_target_dim } > { \l__tblr_hfuzz_dim } } { \prop_if_empty:NTF \l__tblr_column_coefficient_prop { \__tblr_adjust_extendable_column_width_negative: } @@ -6604,8 +6591,6 @@ } \tl_new:N \l__tblr_dash_value_tl -\tl_new:N \l__tblr_dash_value_head_tl -\tl_new:N \l__tblr_dash_value_tail_tl \tl_new:N \l__tblr_width_value_tl \tl_new:N \l__tblr_color_value_tl @@ -6616,11 +6601,10 @@ %% get border style \tl_set:Nx \l__tblr_dash_value_tl %% may be empty { \__tblr_spec_item:ne { #3 } { [#1][#2](1) / @dash } } - \tl_set:Nx \l__tblr_dash_value_head_tl { \tl_head:N \l__tblr_dash_value_tl } - \tl_set:Nx \l__tblr_dash_value_tail_tl { \tl_tail:N \l__tblr_dash_value_tl } - \exp_args:NV \tl_if_eq:NNTF \l__tblr_dash_value_head_tl \@tblr@dash + \tl_if_head_eq_meaning:VNTF \l__tblr_dash_value_tl \q__tblr_dash { - \tl_set_eq:cN { lTblrCell #4 BorderStyleTl } \l__tblr_dash_value_tail_tl + \tl_set:ce { lTblrCell #4 BorderStyleTl } + { \tl_tail:N \l__tblr_dash_value_tl } %% get border width \tl_set:Nx \l__tblr_width_value_tl { \__tblr_spec_item:ne { #3 } { [#1][#2](1) / wd } } @@ -7079,12 +7063,19 @@ \cs_new_protected:cpn { __tblr_use_lib_ #1: } {#2} } +%% Note that \prg_do_nothing: is an existing command. \NewDocumentCommand \UseTblrLibrary { m } { \clist_map_inline:nn {#1} { - \use:c { __tblr_use_lib_ ##1: } - \cs_undefine:c { __tblr_use_lib_ ##1: } + \cs_if_exist:cTF { __tblr_use_lib_ ##1: } + { + \use:c { __tblr_use_lib_ ##1: } + \cs_gset_eq:cN { __tblr_use_lib_ ##1: } \prg_do_nothing: + } + { + \RequirePackage { tblrlib##1 } + } } } diff --git a/tabularray.tex b/tabularray.tex index d7d11bd..1106846 100644 --- a/tabularray.tex +++ b/tabularray.tex @@ -1525,20 +1525,6 @@ \subsection{Hspan and Vspan Algorithms} \end{tblr} \end{demohigh} -\subsection{Use Verbatim Commands} - -%With \verb!verb! key, you can write \verb!\verb! commands in the cell text: -% -%\begin{demohigh} -%\begin{tblr}{hlines,verb} -% 20 & 30 & \verb!\hello{world}!40 \\ -% 50 & \verb!\hello!60 & 70 \\ -%\end{tblr} -%\end{demohigh} - -The inner key \verb!verb! is obsolete from version 2023A, and will be removed in the future. -Instead you can use more reliable \verb!\fakeverb! command (see Section \ref{sec:fakeverb}). - \subsection{Set Baseline for the Table} With \verb!baseline! key, you can set baseline for the table. @@ -3125,9 +3111,9 @@ \section{Control Horizontal Alignment} \section{Use Safe Verbatim Commands}% \label{sec:fakeverb} -Due to the limitation of TeX, even if you have passed \texttt{verb} option to a -\texttt{tabularray} table, you still could not use some special characters in a -\verb!\verb! command. As an replacement, you may use \verb|\fakeverb| command from \href{https://www.ctan.org/pkg/codehigh}{\texttt{codehigh}} package. +Due to the limitations of TeX, +we are not able to make \fakeverb{\verb} command behave well inside \texttt{tabularray} tables. +As a replacement, you may use \fakeverb{\fakeverb} command from \href{https://www.ctan.org/pkg/codehigh}{\texttt{codehigh}} package. The \verb|\fakeverb| command will remove the backslashes in the following control symbols before typesetting its content: \fakeverb{\\\\}, \fakeverb{\\\{}, \fakeverb{\\\}}, \fakeverb{\\\#}, \fakeverb{\\\^} and \texttt{\textbackslash\textvisiblespace}, \fakeverb{\\\%}. diff --git a/testfiles/cell-001.tlg b/testfiles/cell-001.tlg index c5e945d..22453f1 100644 --- a/testfiles/cell-001.tlg +++ b/testfiles/cell-001.tlg @@ -1,28 +1,28 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: normal cells: t cells -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: normal cells: t/m/b cells with strut -============================================================ -============================================================ -============================================================ -TEST 3: normal cells: t/m/b cells without strut -============================================================ -============================================================ -============================================================ -TEST 4: normal cells: h/t/m/b/f cells with strut -============================================================ -============================================================ -============================================================ -TEST 5: normal cells: h/t/m/b/f cells without strut -============================================================ -============================================================ -[1 -] (cell-001.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: normal cells: t cells +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: normal cells: t/m/b cells with strut +============================================================ +============================================================ +============================================================ +TEST 3: normal cells: t/m/b cells without strut +============================================================ +============================================================ +============================================================ +TEST 4: normal cells: h/t/m/b/f cells with strut +============================================================ +============================================================ +============================================================ +TEST 5: normal cells: h/t/m/b/f cells without strut +============================================================ +============================================================ +[1 +] (cell-001.aux) diff --git a/testfiles/cell-002.tlg b/testfiles/cell-002.tlg index e613d70..74ff126 100644 --- a/testfiles/cell-002.tlg +++ b/testfiles/cell-002.tlg @@ -1,20 +1,20 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: multiline cells: t/m/b cells -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: multiline cells: h/m/f cells -============================================================ -============================================================ -============================================================ -TEST 3: multiline cells: h/t/m/b/f cells -============================================================ -============================================================ -[1 -] (cell-002.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: multiline cells: t/m/b cells +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: multiline cells: h/m/f cells +============================================================ +============================================================ +============================================================ +TEST 3: multiline cells: h/t/m/b/f cells +============================================================ +============================================================ +[1 +] (cell-002.aux) diff --git a/testfiles/cell-003.tlg b/testfiles/cell-003.tlg index dd12ccf..ec8bd5f 100644 --- a/testfiles/cell-003.tlg +++ b/testfiles/cell-003.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: break lines in parbox cells -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -[1 -] (cell-003.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: break lines in parbox cells +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +[1 +] (cell-003.aux) diff --git a/testfiles/cell-004.tlg b/testfiles/cell-004.tlg index 8d98aac..784ed46 100644 --- a/testfiles/cell-004.tlg +++ b/testfiles/cell-004.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: auto break lines by \\ -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: auto break lines by \\ with font option -============================================================ -============================================================ -[1 -] (cell-004.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: auto break lines by \\ +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: auto break lines by \\ with font option +============================================================ +============================================================ +[1 +] (cell-004.aux) diff --git a/testfiles/cell-005.tlg b/testfiles/cell-005.tlg index c0bb283..e4dc3ae 100644 --- a/testfiles/cell-005.tlg +++ b/testfiles/cell-005.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: test \multicolumn cells -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: testing fix-width columns with all cells spanned -============================================================ -============================================================ -[1 -] (cell-005.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: test \multicolumn cells +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: testing fix-width columns with all cells spanned +============================================================ +============================================================ +[1 +] (cell-005.aux) diff --git a/testfiles/cell-006.tlg b/testfiles/cell-006.tlg index a5dcfee..67ef4ca 100644 --- a/testfiles/cell-006.tlg +++ b/testfiles/cell-006.tlg @@ -1,20 +1,20 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: multicolumn: compute span widths from column widths -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: multicolumn: compute column widths from span widths -============================================================ -============================================================ -============================================================ -TEST 3: multicolumn: distribute span sizes evenly to columns -============================================================ -============================================================ -[1 -] (cell-006.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: multicolumn: compute span widths from column widths +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: multicolumn: compute column widths from span widths +============================================================ +============================================================ +============================================================ +TEST 3: multicolumn: distribute span sizes evenly to columns +============================================================ +============================================================ +[1 +] (cell-006.aux) diff --git a/testfiles/cell-007.tlg b/testfiles/cell-007.tlg index 8dd96a5..aa54bc0 100644 --- a/testfiles/cell-007.tlg +++ b/testfiles/cell-007.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: test multirow cells -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: test multirow cells with double hlines -============================================================ -============================================================ -[1 -] (cell-007.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: test multirow cells +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: test multirow cells with double hlines +============================================================ +============================================================ +[1 +] (cell-007.aux) diff --git a/testfiles/cell-008.tlg b/testfiles/cell-008.tlg index 56ac736..f5af148 100644 --- a/testfiles/cell-008.tlg +++ b/testfiles/cell-008.tlg @@ -1,20 +1,20 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: multirow: legacy -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: multirow: modern -============================================================ -============================================================ -============================================================ -TEST 3: multirow: modern with vspan=even -============================================================ -============================================================ -[1 -] (cell-008.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: multirow: legacy +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: multirow: modern +============================================================ +============================================================ +============================================================ +TEST 3: multirow: modern with vspan=even +============================================================ +============================================================ +[1 +] (cell-008.aux) diff --git a/testfiles/cell-009.tlg b/testfiles/cell-009.tlg index ecfffe6..18b0118 100644 --- a/testfiles/cell-009.tlg +++ b/testfiles/cell-009.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: multirow and multicolumn: \cline -============================================================ -============================================================ -============================================================ -TEST 2: multirow and multicolumn: \hline -============================================================ -============================================================ -[1 -] (cell-009.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: multirow and multicolumn: \cline +============================================================ +============================================================ +============================================================ +TEST 2: multirow and multicolumn: \hline +============================================================ +============================================================ +[1 +] (cell-009.aux) diff --git a/testfiles/cell-010.tlg b/testfiles/cell-010.tlg index b89d21b..88da70c 100644 --- a/testfiles/cell-010.tlg +++ b/testfiles/cell-010.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing cmd option -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -[1 -] (cell-010.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing cmd option +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +[1 +] (cell-010.aux) diff --git a/testfiles/cell-011.tlg b/testfiles/cell-011.tlg index f201732..ebdb62f 100644 --- a/testfiles/cell-011.tlg +++ b/testfiles/cell-011.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing new implementation for stretch option ##265 -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -[1 -] (cell-011.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing new implementation for stretch option ##265 +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +[1 +] (cell-011.aux) diff --git a/testfiles/color-001.tlg b/testfiles/color-001.tlg index 2768411..0ca1260 100644 --- a/testfiles/color-001.tlg +++ b/testfiles/color-001.tlg @@ -1,24 +1,24 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: cell background -============================================================ -============================================================ -============================================================ -TEST 2: cell foreground and font with measure=hbox -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 3: cell foreground and font with measure=vbox -============================================================ -============================================================ -============================================================ -TEST 4: overwrite cell foreground -============================================================ -============================================================ -[1 -] (color-001.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: cell background +============================================================ +============================================================ +============================================================ +TEST 2: cell foreground and font with measure=hbox +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 3: cell foreground and font with measure=vbox +============================================================ +============================================================ +============================================================ +TEST 4: overwrite cell foreground +============================================================ +============================================================ +[1 +] (color-001.aux) diff --git a/testfiles/color-002.tlg b/testfiles/color-002.tlg index 5959e9d..ef56600 100644 --- a/testfiles/color-002.tlg +++ b/testfiles/color-002.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: column background and row background: legacy -============================================================ -============================================================ -============================================================ -TEST 2: column background and row background: modern -============================================================ -============================================================ -[1 -] (color-002.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: column background and row background: legacy +============================================================ +============================================================ +============================================================ +TEST 2: column background and row background: modern +============================================================ +============================================================ +[1 +] (color-002.aux) diff --git a/testfiles/color-003.tlg b/testfiles/color-003.tlg index 4fbea1b..2fc9096 100644 --- a/testfiles/color-003.tlg +++ b/testfiles/color-003.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: multicolumn: compute column widths from span widths -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: multicolumn: compute span widths from column widths -============================================================ -============================================================ -[1 -] (color-003.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: multicolumn: compute column widths from span widths +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: multicolumn: compute span widths from column widths +============================================================ +============================================================ +[1 +] (color-003.aux) diff --git a/testfiles/color-004.tlg b/testfiles/color-004.tlg index 29c56c7..96ad8ab 100644 --- a/testfiles/color-004.tlg +++ b/testfiles/color-004.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: multirow background: legacy -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: multirow background: modern -============================================================ -============================================================ -[1 -] (color-004.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: multirow background: legacy +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: multirow background: modern +============================================================ +============================================================ +[1 +] (color-004.aux) diff --git a/testfiles/color-005.tlg b/testfiles/color-005.tlg index 9a89918..f18d01f 100644 --- a/testfiles/color-005.tlg +++ b/testfiles/color-005.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: multirow and multicolumn: \cline -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: multirow and multicolumn: \hline -============================================================ -============================================================ -[1 -] (color-005.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: multirow and multicolumn: \cline +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: multirow and multicolumn: \hline +============================================================ +============================================================ +[1 +] (color-005.aux) diff --git a/testfiles/extra-001.tlg b/testfiles/extra-001.tlg index 26aa2a5..54eaabc 100644 --- a/testfiles/extra-001.tlg +++ b/testfiles/extra-001.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing expand option -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: testing \NewEnviron -============================================================ -============================================================ -[1 -] (extra-001.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing expand option +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: testing \NewEnviron +============================================================ +============================================================ +[1 +] (extra-001.aux) diff --git a/testfiles/extra-002.tlg b/testfiles/extra-002.tlg index bc877cd..3ce8386 100644 --- a/testfiles/extra-002.tlg +++ b/testfiles/extra-002.tlg @@ -1,32 +1,32 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: even and odd selectors with options -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: named indexes U-Z -============================================================ -============================================================ -============================================================ -TEST 3: named indexes U-Z in child from -============================================================ -============================================================ -============================================================ -TEST 4: name indexes U-Z ensured positive -============================================================ -! Package tabularray Error: Named index ``U'' (-1) out of bound [1, 4]. -Type to continue. - ... -l. ...\end - {tblr} -LaTeX does not know anything more about this error, sorry. -Try typing to proceed. -If that doesn't work, type X to quit. -============================================================ -[1 -] (extra-002.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: even and odd selectors with options +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: named indexes U-Z +============================================================ +============================================================ +============================================================ +TEST 3: named indexes U-Z in child from +============================================================ +============================================================ +============================================================ +TEST 4: name indexes U-Z ensured positive +============================================================ +! Package tabularray Error: Named index ``U'' (-1) out of bound [1, 4]. +Type to continue. + ... +l. ...\end + {tblr} +LaTeX does not know anything more about this error, sorry. +Try typing to proceed. +If that doesn't work, type X to quit. +============================================================ +[1 +] (extra-002.aux) diff --git a/testfiles/hvline-001.tlg b/testfiles/hvline-001.tlg index 5119072..6191e8b 100644 --- a/testfiles/hvline-001.tlg +++ b/testfiles/hvline-001.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: hline and vline -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: hline and vline segments of different widths ##260 -============================================================ -============================================================ -[1 -] (hvline-001.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: hline and vline +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: hline and vline segments of different widths ##260 +============================================================ +============================================================ +[1 +] (hvline-001.aux) diff --git a/testfiles/hvline-002.tlg b/testfiles/hvline-002.tlg index 930238c..3f7b27f 100644 --- a/testfiles/hvline-002.tlg +++ b/testfiles/hvline-002.tlg @@ -1,24 +1,24 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: hlines and vlines -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: hlines and vlines -============================================================ -============================================================ -============================================================ -TEST 3: hlines and vlines -============================================================ -============================================================ -============================================================ -TEST 4: hlines and vlines -============================================================ -============================================================ -[1 -] (hvline-002.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: hlines and vlines +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: hlines and vlines +============================================================ +============================================================ +============================================================ +TEST 3: hlines and vlines +============================================================ +============================================================ +============================================================ +TEST 4: hlines and vlines +============================================================ +============================================================ +[1 +] (hvline-002.aux) diff --git a/testfiles/hvline-003.tlg b/testfiles/hvline-003.tlg index 0be4bd7..4ebfd4e 100644 --- a/testfiles/hvline-003.tlg +++ b/testfiles/hvline-003.tlg @@ -1,20 +1,20 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing leftpos and rightpos -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: testing abovepos and belowpos -============================================================ -============================================================ -============================================================ -TEST 3: vline positions when belowpos=0 -============================================================ -============================================================ -[1 -] (hvline-003.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing leftpos and rightpos +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: testing abovepos and belowpos +============================================================ +============================================================ +============================================================ +TEST 3: vline positions when belowpos=0 +============================================================ +============================================================ +[1 +] (hvline-003.aux) diff --git a/testfiles/hvline-004.md5 b/testfiles/hvline-004.md5 new file mode 100644 index 0000000..c239e58 --- /dev/null +++ b/testfiles/hvline-004.md5 @@ -0,0 +1 @@ +e1c300e619803038d1f20340e4780598 \ No newline at end of file diff --git a/testfiles/hvline-004.png b/testfiles/hvline-004.png new file mode 100644 index 0000000..9b97aaf Binary files /dev/null and b/testfiles/hvline-004.png differ diff --git a/testfiles/hvline-004.tex b/testfiles/hvline-004.tex new file mode 100644 index 0000000..ba1ffb7 --- /dev/null +++ b/testfiles/hvline-004.tex @@ -0,0 +1,43 @@ +\documentclass{article} +\usepackage[b5paper,margin=1cm]{geometry} +\pagestyle{empty} + +\input{regression-test} + +\usepackage{tabularray} + +\SetTblrTracing{none} +\setlength\parindent{0pt} +\setbox0=\hbox{$h$\small$h$} + +\begin{document} + +\START +\hrule\bigskip + +\BEGINTEST{empty text} +\begin{tblr}{ + hlines, + vlines, + hline{1}={text={}}, + vline{1}={text={}}, +} + a +\end{tblr} +\ENDTEST + +\bigskip\hrule\bigskip + +% lvjr/tabularray#303 +\BEGINTEST{fragile text} +\begin{tblr}{ + hlines, + vlines, + hline{1}={text={\def\x{}\rlap{--h--}}}, + vline{1}={text={\textbf{v}}}, +} + a +\end{tblr} +\ENDTEST + +\end{document} diff --git a/testfiles/hvline-004.tlg b/testfiles/hvline-004.tlg new file mode 100644 index 0000000..b872955 --- /dev/null +++ b/testfiles/hvline-004.tlg @@ -0,0 +1,12 @@ +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: empty text +============================================================ +============================================================ +============================================================ +TEST 2: fragile text +============================================================ +============================================================ +[1 +] (hvline-004.aux) diff --git a/testfiles/library-001.tlg b/testfiles/library-001.tlg index 7a595df..c34cad2 100644 --- a/testfiles/library-001.tlg +++ b/testfiles/library-001.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: booktabs: testing -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: talltabs: testing -============================================================ -============================================================ -[1 -] (library-001.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: booktabs: testing +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: talltabs: testing +============================================================ +============================================================ +[1 +] (library-001.aux) diff --git a/testfiles/library-002.tlg b/testfiles/library-002.tlg index 5412ba5..6f721e3 100644 --- a/testfiles/library-002.tlg +++ b/testfiles/library-002.tlg @@ -1,20 +1,20 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: diagbox: one diagonal line -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: diagbox: two diagonal lines -============================================================ -============================================================ -============================================================ -TEST 3: diagbox: math mode -============================================================ -============================================================ -[1 -] (library-002.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: diagbox: one diagonal line +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: diagbox: two diagonal lines +============================================================ +============================================================ +============================================================ +TEST 3: diagbox: math mode +============================================================ +============================================================ +[1 +] (library-002.aux) diff --git a/testfiles/library-003.tlg b/testfiles/library-003.tlg index 8173af1..9c55fd6 100644 --- a/testfiles/library-003.tlg +++ b/testfiles/library-003.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: siunitx: testing -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -[1 -] (library-003.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: siunitx: testing +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +[1 +] (library-003.aux) diff --git a/testfiles/library-004.tlg b/testfiles/library-004.tlg index 7545b79..d6101b3 100644 --- a/testfiles/library-004.tlg +++ b/testfiles/library-004.tlg @@ -1,20 +1,20 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: siunitx: table-alignment-mode=format -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: siunitx: table-alignment-mode=none -============================================================ -============================================================ -============================================================ -TEST 3: siunitx: table-alignment-mode=marker -============================================================ -============================================================ -[1 -] (library-004.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: siunitx: table-alignment-mode=format +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: siunitx: table-alignment-mode=none +============================================================ +============================================================ +============================================================ +TEST 3: siunitx: table-alignment-mode=marker +============================================================ +============================================================ +[1 +] (library-004.aux) diff --git a/testfiles/library-005.tlg b/testfiles/library-005.tlg index f4c1c05..a81ca08 100644 --- a/testfiles/library-005.tlg +++ b/testfiles/library-005.tlg @@ -1,20 +1,20 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: booktabs library: testing trim option -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: booktabs library: testing bootabs environment -============================================================ -============================================================ -============================================================ -TEST 3: booktabs library: testing extra commands -============================================================ -============================================================ -[1 -] (library-005.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: booktabs library: testing trim option +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: booktabs library: testing bootabs environment +============================================================ +============================================================ +============================================================ +TEST 3: booktabs library: testing extra commands +============================================================ +============================================================ +[1 +] (library-005.aux) diff --git a/testfiles/library-006.tlg b/testfiles/library-006.tlg index 7a09dea..aa03b06 100644 --- a/testfiles/library-006.tlg +++ b/testfiles/library-006.tlg @@ -1,17 +1,17 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -\c@mycnt=\count... -============================================================ -TEST 1: counter library: text mode -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: counter library: math mode -============================================================ -============================================================ -[1 -] (library-006.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +\c@mycnt=\count... +============================================================ +TEST 1: counter library: text mode +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: counter library: math mode +============================================================ +============================================================ +[1 +] (library-006.aux) diff --git a/testfiles/library-007.tlg b/testfiles/library-007.tlg index 8499b99..b92638d 100644 --- a/testfiles/library-007.tlg +++ b/testfiles/library-007.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: siunitx library: testing s column -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -[1 -] (library-007.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: siunitx library: testing s column +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +[1 +] (library-007.aux) diff --git a/testfiles/library-008.tlg b/testfiles/library-008.tlg index e35b42b..cf78400 100644 --- a/testfiles/library-008.tlg +++ b/testfiles/library-008.tlg @@ -1,8 +1,8 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: amsmath library: testing -============================================================ -============================================================ -[1 -] (library-008.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: amsmath library: testing +============================================================ +============================================================ +[1 +] (library-008.aux) diff --git a/testfiles/library-009.tlg b/testfiles/library-009.tlg index ab054a2..b58ece6 100644 --- a/testfiles/library-009.tlg +++ b/testfiles/library-009.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: siunitx: testing multiline cells -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: testing multiline cells with three pairs of braces -============================================================ -============================================================ -[1 -] (library-009.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: siunitx: testing multiline cells +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: testing multiline cells with three pairs of braces +============================================================ +============================================================ +[1 +] (library-009.aux) diff --git a/testfiles/library-010.tlg b/testfiles/library-010.tlg index 9a68298..e33b097 100644 --- a/testfiles/library-010.tlg +++ b/testfiles/library-010.tlg @@ -1,30 +1,30 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: functional: calculate the sums of column cells -============================================================ -\g__fun_argtype_index_6_int=\count... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: functional: color background of cells according to its content -============================================================ -============================================================ -============================================================ -TEST 3: functional: color table rows with a color series -============================================================ -============================================================ -============================================================ -TEST 4: functional: evaluate every occurrence of a function -============================================================ -============================================================ -============================================================ -TEST 5: functional: input files inside tabularray tables -============================================================ -(test1.tmp) (test2.tmp) -============================================================ -[1 -] (library-010.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: functional: calculate the sums of column cells +============================================================ +\g__fun_argtype_index_6_int=\count... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: functional: color background of cells according to its content +============================================================ +============================================================ +============================================================ +TEST 3: functional: color table rows with a color series +============================================================ +============================================================ +============================================================ +TEST 4: functional: evaluate every occurrence of a function +============================================================ +============================================================ +============================================================ +TEST 5: functional: input files inside tabularray tables +============================================================ +(test1.tmp) (test2.tmp) +============================================================ +[1 +] (library-010.aux) diff --git a/testfiles/library-011.tlg b/testfiles/library-011.tlg index 7f43440..98400a5 100644 --- a/testfiles/library-011.tlg +++ b/testfiles/library-011.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: siunitx: testing guard option -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -[1 -] (library-011.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: siunitx: testing guard option +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +[1 +] (library-011.aux) diff --git a/testfiles/library-012.tlg b/testfiles/library-012.tlg index fbcf209..7ac6ed2 100644 --- a/testfiles/library-012.tlg +++ b/testfiles/library-012.tlg @@ -1,8 +1,8 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: nameref: testing -============================================================ -============================================================ -[1 -] (library-012.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: nameref: testing +============================================================ +============================================================ +[1 +] (library-012.aux) diff --git a/testfiles/library-013.tlg b/testfiles/library-013.tlg index 1824a4f..37a62ca 100644 --- a/testfiles/library-013.tlg +++ b/testfiles/library-013.tlg @@ -1,8 +1,8 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: zref: testing -============================================================ -============================================================ -[1 -] (library-013.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: zref: testing +============================================================ +============================================================ +[1 +] (library-013.aux) diff --git a/testfiles/library-014.tlg b/testfiles/library-014.tlg index 2cc666b..a6885c3 100644 --- a/testfiles/library-014.tlg +++ b/testfiles/library-014.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing delimiters -============================================================ -============================================================ -============================================================ -TEST 2: testing +bmatrix -============================================================ -============================================================ -[1 -] (library-014.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing delimiters +============================================================ +============================================================ +============================================================ +TEST 2: testing +bmatrix +============================================================ +============================================================ +[1 +] (library-014.aux) diff --git a/testfiles/library-015.tlg b/testfiles/library-015.tlg index b6a714c..5971917 100644 --- a/testfiles/library-015.tlg +++ b/testfiles/library-015.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: load the same library twice -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -[1 -] (library-015.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: load the same library twice +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +[1 +] (library-015.aux) diff --git a/testfiles/long-001.tlg b/testfiles/long-001.tlg index 26ca341..44363cf 100644 --- a/testfiles/long-001.tlg +++ b/testfiles/long-001.tlg @@ -1,21 +1,21 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing long table -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <12> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <8> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <6> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -[1 -] -[2] -============================================================ -[3] -[4] (long-001.aux) -Package rerunfilecheck Info: File `long-001.out' has not changed. -(rerunfilecheck) Checksum: D41D8CD98F00B204E9800998ECF8427E;0. +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing long table +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <12> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <8> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <6> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +[1 +] +[2] +============================================================ +[3] +[4] (long-001.aux) +Package rerunfilecheck Info: File `long-001.out' has not changed. +(rerunfilecheck) Checksum: D41D8CD98F00B204E9800998ECF8427E;0. diff --git a/testfiles/long-003.tlg b/testfiles/long-003.tlg index 545d171..a4fd94e 100644 --- a/testfiles/long-003.tlg +++ b/testfiles/long-003.tlg @@ -1,13 +1,13 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: long table: pagebreak and nopagebreak -============================================================ -[1 -] -[2] -[3] -============================================================ -[4] (long-003.aux) -Package rerunfilecheck Info: File `long-003.out' has not changed. -(rerunfilecheck) Checksum: D41D8CD98F00B204E9800998ECF8427E;0. +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: long table: pagebreak and nopagebreak +============================================================ +[1 +] +[2] +[3] +============================================================ +[4] (long-003.aux) +Package rerunfilecheck Info: File `long-003.out' has not changed. +(rerunfilecheck) Checksum: D41D8CD98F00B204E9800998ECF8427E;0. diff --git a/testfiles/long-004.tlg b/testfiles/long-004.tlg index b67bfaf..263edd6 100644 --- a/testfiles/long-004.tlg +++ b/testfiles/long-004.tlg @@ -1,26 +1,26 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: tall table: inline -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: tall table: float -============================================================ -============================================================ -============================================================ -TEST 3: tall table: inline -============================================================ -============================================================ -============================================================ -TEST 4: tall table: float -============================================================ -============================================================ -[1 -] (long-004.aux) -Package rerunfilecheck Info: File `long-004.out' has not changed. -(rerunfilecheck) Checksum: D41D8CD98F00B204E9800998ECF8427E;0. +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: tall table: inline +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: tall table: float +============================================================ +============================================================ +============================================================ +TEST 3: tall table: inline +============================================================ +============================================================ +============================================================ +TEST 4: tall table: float +============================================================ +============================================================ +[1 +] (long-004.aux) +Package rerunfilecheck Info: File `long-004.out' has not changed. +(rerunfilecheck) Checksum: D41D8CD98F00B204E9800998ECF8427E;0. diff --git a/testfiles/long-005.tlg b/testfiles/long-005.tlg index 66d8de7..f404523 100644 --- a/testfiles/long-005.tlg +++ b/testfiles/long-005.tlg @@ -1,9 +1,9 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: ##39: blank page when using \newpage -============================================================ -[1 -] -============================================================ -[2] (long-005.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: ##39: blank page when using \newpage +============================================================ +[1 +] +============================================================ +[2] (long-005.aux) diff --git a/testfiles/long-006.tlg b/testfiles/long-006.tlg index 5df32d1..0fd63b0 100644 --- a/testfiles/long-006.tlg +++ b/testfiles/long-006.tlg @@ -1,9 +1,9 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: ##42: blank page after \section starts at the top of a page -============================================================ -[1 -] -============================================================ -[2] (long-006.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: ##42: blank page after \section starts at the top of a page +============================================================ +[1 +] +============================================================ +[2] (long-006.aux) diff --git a/testfiles/long-007.tlg b/testfiles/long-007.tlg index b6b9c43..ecc22be 100644 --- a/testfiles/long-007.tlg +++ b/testfiles/long-007.tlg @@ -1,11 +1,11 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: ##165: pagebreak option -============================================================ -[1 -] -[2] -[3] -============================================================ -[4] (long-007.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: ##165: pagebreak option +============================================================ +[1 +] +[2] +[3] +============================================================ +[4] (long-007.aux) diff --git a/testfiles/long-008.tlg b/testfiles/long-008.tlg index a6f9fa8..d16e607 100644 --- a/testfiles/long-008.tlg +++ b/testfiles/long-008.tlg @@ -1,14 +1,14 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing first and last hlines in subtables -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <12> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <8> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <6> on input line .... -============================================================ -[1 -] (long-008.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing first and last hlines in subtables +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <12> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <8> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <6> on input line .... +============================================================ +[1 +] (long-008.aux) diff --git a/testfiles/long-009.tlg b/testfiles/long-009.tlg index c0ff637..5284ad1 100644 --- a/testfiles/long-009.tlg +++ b/testfiles/long-009.tlg @@ -1,9 +1,9 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing positive parskip -============================================================ -[1 -] -============================================================ -[2] (long-009.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing positive parskip +============================================================ +[1 +] +============================================================ +[2] (long-009.aux) diff --git a/testfiles/long-010.tlg b/testfiles/long-010.tlg index 5ab34b9..5fd36a1 100644 --- a/testfiles/long-010.tlg +++ b/testfiles/long-010.tlg @@ -1,9 +1,9 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing `label=none` -============================================================ -[1 -] -============================================================ -[2] (long-010.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing `label=none` +============================================================ +[1 +] +============================================================ +[2] (long-010.aux) diff --git a/testfiles/rowcol-001.tlg b/testfiles/rowcol-001.tlg index 239a143..be918d9 100644 --- a/testfiles/rowcol-001.tlg +++ b/testfiles/rowcol-001.tlg @@ -1,26 +1,26 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing decimal numbers -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: testing @ expression in math mode -============================================================ -============================================================ -============================================================ -TEST 3: testing !, < and > specifiers -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <12> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <8> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <6> on input line .... -============================================================ -[1 -] (rowcol-001.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing decimal numbers +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: testing @ expression in math mode +============================================================ +============================================================ +============================================================ +TEST 3: testing !, < and > specifiers +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <12> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <8> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <6> on input line .... +============================================================ +[1 +] (rowcol-001.aux) diff --git a/testfiles/rowcol-002.tlg b/testfiles/rowcol-002.tlg index 62d60f9..83eed4b 100644 --- a/testfiles/rowcol-002.tlg +++ b/testfiles/rowcol-002.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing rowsep -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: testing colsep -============================================================ -============================================================ -[1 -] (rowcol-002.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing rowsep +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: testing colsep +============================================================ +============================================================ +[1 +] (rowcol-002.aux) diff --git a/testfiles/rowcol-003.tlg b/testfiles/rowcol-003.tlg index 87251b0..ba43f66 100644 --- a/testfiles/rowcol-003.tlg +++ b/testfiles/rowcol-003.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing \\*[dimen] -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: testing \\\relax and \hline \relax -============================================================ -============================================================ -[1 -] (rowcol-003.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing \\*[dimen] +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: testing \\\relax and \hline \relax +============================================================ +============================================================ +[1 +] (rowcol-003.aux) diff --git a/testfiles/rowcol-004.tlg b/testfiles/rowcol-004.tlg index 1558d73..89e0191 100644 --- a/testfiles/rowcol-004.tlg +++ b/testfiles/rowcol-004.tlg @@ -1,25 +1,25 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: normal columns with large widths -============================================================ -Package tabularray Warning: Table width is too small, need 21.99994pt more! -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: extendable columns with positive and negative coefficients -============================================================ -============================================================ -============================================================ -TEST 3: extendable columns with only negative coefficients -============================================================ -============================================================ -============================================================ -TEST 4: extendable underfull columns with only negative coefficients -============================================================ -============================================================ -[1 -] (rowcol-004.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: normal columns with large widths +============================================================ +Package tabularray Warning: Table width is too small, need 21.99994pt more! +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: extendable columns with positive and negative coefficients +============================================================ +============================================================ +============================================================ +TEST 3: extendable columns with only negative coefficients +============================================================ +============================================================ +============================================================ +TEST 4: extendable underfull columns with only negative coefficients +============================================================ +============================================================ +[1 +] (rowcol-004.aux) diff --git a/testfiles/table-001.tlg b/testfiles/table-001.tlg index 33457aa..8a71623 100644 --- a/testfiles/table-001.tlg +++ b/testfiles/table-001.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: start tabularray in vertical mode -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -[1 -] (table-001.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: start tabularray in vertical mode +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +[1 +] (table-001.aux) diff --git a/testfiles/table-002.tlg b/testfiles/table-002.tlg index e830cfa..f369439 100644 --- a/testfiles/table-002.tlg +++ b/testfiles/table-002.tlg @@ -1,20 +1,20 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: vertical alignment: one row -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: vertical alignment: two rows without hlines -============================================================ -============================================================ -============================================================ -TEST 3: vertical alignment: two rows with hlines -============================================================ -============================================================ -[1 -] (table-002.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: vertical alignment: one row +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: vertical alignment: two rows without hlines +============================================================ +============================================================ +============================================================ +TEST 3: vertical alignment: two rows with hlines +============================================================ +============================================================ +[1 +] (table-002.aux) diff --git a/testfiles/table-003.tlg b/testfiles/table-003.tlg index 3c01860..8da1335 100644 --- a/testfiles/table-003.tlg +++ b/testfiles/table-003.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: vertical alignment: the first and the last rows -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: vertical alignment: specified rows -============================================================ -============================================================ -[1 -] (table-003.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: vertical alignment: the first and the last rows +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: vertical alignment: specified rows +============================================================ +============================================================ +[1 +] (table-003.aux) diff --git a/testfiles/table-004.tlg b/testfiles/table-004.tlg index 535d6e2..4548803 100644 --- a/testfiles/table-004.tlg +++ b/testfiles/table-004.tlg @@ -1,20 +1,20 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: table nesting: same rule width -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: table nesting: different rule widthes -============================================================ -============================================================ -============================================================ -TEST 3: table nesting: restore table commands ##31 -============================================================ -============================================================ -[1 -] (table-004.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: table nesting: same rule width +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: table nesting: different rule widthes +============================================================ +============================================================ +============================================================ +TEST 3: table nesting: restore table commands ##31 +============================================================ +============================================================ +[1 +] (table-004.aux) diff --git a/testfiles/table-005.tlg b/testfiles/table-005.tlg index bddafd0..8c62fba 100644 --- a/testfiles/table-005.tlg +++ b/testfiles/table-005.tlg @@ -1,20 +1,20 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing stretch option: stretch = 1 -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: testing stretch option: stretch = 0 -============================================================ -============================================================ -============================================================ -TEST 3: testing stretch option: stretch = 2 -============================================================ -============================================================ -[1 -] (table-005.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing stretch option: stretch = 1 +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: testing stretch option: stretch = 0 +============================================================ +============================================================ +============================================================ +TEST 3: testing stretch option: stretch = 2 +============================================================ +============================================================ +[1 +] (table-005.aux) diff --git a/testfiles/table-006.tlg b/testfiles/table-006.tlg index 185c80d..1e80305 100644 --- a/testfiles/table-006.tlg +++ b/testfiles/table-006.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing \SetTblrDefault -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -[1 -] (table-006.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing \SetTblrDefault +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +[1 +] (table-006.aux) diff --git a/testfiles/table-007.tlg b/testfiles/table-007.tlg index 756d726..6a0dee4 100644 --- a/testfiles/table-007.tlg +++ b/testfiles/table-007.tlg @@ -1,16 +1,16 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing math mode -============================================================ -============================================================ -============================================================ -TEST 2: testing mode option -============================================================ -============================================================ -============================================================ -TEST 3: testing mode=math with font=\boldmath -============================================================ -============================================================ -[1 -] (table-007.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing math mode +============================================================ +============================================================ +============================================================ +TEST 2: testing mode option +============================================================ +============================================================ +============================================================ +TEST 3: testing mode=math with font=\boldmath +============================================================ +============================================================ +[1 +] (table-007.aux) diff --git a/testfiles/table-008.tlg b/testfiles/table-008.tlg index ec08a79..6c674d6 100644 --- a/testfiles/table-008.tlg +++ b/testfiles/table-008.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing rownum / colnum / rowcount / colcount -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -[1 -] (table-008.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing rownum / colnum / rowcount / colcount +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +[1 +] (table-008.aux) diff --git a/testfiles/table-009.tlg b/testfiles/table-009.tlg index 436be3d..777f7d6 100644 --- a/testfiles/table-009.tlg +++ b/testfiles/table-009.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing rulesep -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -[1 -] (table-009.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing rulesep +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +[1 +] (table-009.aux) diff --git a/testfiles/table-010.tlg b/testfiles/table-010.tlg index ca4969b..f1b7e0e 100644 --- a/testfiles/table-010.tlg +++ b/testfiles/table-010.tlg @@ -1,20 +1,20 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing \par tokens at the beginning and at the end of cell text -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: testing space in multiline cell and braces removing -============================================================ -============================================================ -============================================================ -TEST 3: missing last rows when tblr contains truncated rows -============================================================ -============================================================ -[1 -] (table-010.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing \par tokens at the beginning and at the end of cell text +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +============================================================ +TEST 2: testing space in multiline cell and braces removing +============================================================ +============================================================ +============================================================ +TEST 3: missing last rows when tblr contains truncated rows +============================================================ +============================================================ +[1 +] (table-010.aux) diff --git a/testfiles/table-011.tlg b/testfiles/table-011.tlg index b6e1fdc..26c2158 100644 --- a/testfiles/table-011.tlg +++ b/testfiles/table-011.tlg @@ -1,26 +1,26 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing itemize environment with measure=vbox -============================================================ -============================================================ -============================================================ -TEST 2: testing itemize environment with measure=vbox -============================================================ -============================================================ -============================================================ -TEST 3: testing itemize environment with measure=vbox and stretch=-1 -============================================================ -============================================================ -============================================================ -TEST 4: testing enumerate environment with measure=vbox and stretch=-1 -============================================================ -============================================================ -============================================================ -TEST 5: testing \color command with measure=vbox -============================================================ -============================================================ -[1 -] (table-011.aux) -Package rerunfilecheck Info: File `table-011.out' has not changed. -(rerunfilecheck) Checksum: D41D8CD98F00B204E9800998ECF8427E;0. +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing itemize environment with measure=vbox +============================================================ +============================================================ +============================================================ +TEST 2: testing itemize environment with measure=vbox +============================================================ +============================================================ +============================================================ +TEST 3: testing itemize environment with measure=vbox and stretch=-1 +============================================================ +============================================================ +============================================================ +TEST 4: testing enumerate environment with measure=vbox and stretch=-1 +============================================================ +============================================================ +============================================================ +TEST 5: testing \color command with measure=vbox +============================================================ +============================================================ +[1 +] (table-011.aux) +Package rerunfilecheck Info: File `table-011.out' has not changed. +(rerunfilecheck) Checksum: D41D8CD98F00B204E9800998ECF8427E;0. diff --git a/testfiles/table-012.tlg b/testfiles/table-012.tlg index d71d433..9c6e886 100644 --- a/testfiles/table-012.tlg +++ b/testfiles/table-012.tlg @@ -1,8 +1,8 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing tabularray in align environment -============================================================ -============================================================ -[1 -] (table-012.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: testing tabularray in align environment +============================================================ +============================================================ +[1 +] (table-012.aux) diff --git a/testfiles/table-013.tlg b/testfiles/table-013.tlg index 3dabbbd..82e8ac8 100644 --- a/testfiles/table-013.tlg +++ b/testfiles/table-013.tlg @@ -1,12 +1,12 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: setting multiple environments at the same time -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -[1 -] (table-013.aux) +This is a generated file for the l3build validation system. +Don't change this file in any respect. +============================================================ +TEST 1: setting multiple environments at the same time +============================================================ +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line .... +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line .... +============================================================ +[1 +] (table-013.aux) diff --git a/testfiles/verb-001.md5 b/testfiles/verb-001.md5 deleted file mode 100644 index df43de5..0000000 --- a/testfiles/verb-001.md5 +++ /dev/null @@ -1 +0,0 @@ -d6ffd5dd07e6e6b23f48a851ddc71894 \ No newline at end of file diff --git a/testfiles/verb-001.png b/testfiles/verb-001.png deleted file mode 100644 index ec6ee6b..0000000 Binary files a/testfiles/verb-001.png and /dev/null differ diff --git a/testfiles/verb-001.tex b/testfiles/verb-001.tex deleted file mode 100644 index 963f6d8..0000000 --- a/testfiles/verb-001.tex +++ /dev/null @@ -1,40 +0,0 @@ -\documentclass{article} -\usepackage[b5paper,margin=1cm]{geometry} -\pagestyle{empty} - -\input{regression-test} - -\usepackage{array} -\usepackage{tabularray} - -\SetTblrTracing{none} -\UseTblrLibrary{varwidth} - -\begin{document} - -\START -\hrule\bigskip - -\BEGINTEST{testing \verb command with measure=hbox} -\begin{tblr}{colspec={lll},hlines,verb,measure=hbox} - 20 & 30 & \verb!\hello{world}!40 \\ - 50 & \verb!\hello!60 & 70 \\ -\end{tblr} -\ENDTEST - -\BEGINTEST{testing \verb command with measure=vbox} -\begin{tblr}{colspec={lll},hlines,verb,measure=vbox} - 20 & 30 & \verb!\hello{world}!40 \\ - 50 & \verb!\hello!60 & 70 \\ -\end{tblr} -\ENDTEST - -%% Issue #112: verb option causes an error -\BEGINTEST{testing verb option and control sequences} -\begin{tblr}{verb} - \bfseries Text1 & \verb|\bfseries Text1| \\ - \sffamily 1Text & \verb|\sffamily 1Text| \\ -\end{tblr} -\ENDTEST - -\end{document} diff --git a/testfiles/verb-001.tlg b/testfiles/verb-001.tlg deleted file mode 100644 index 64926a7..0000000 --- a/testfiles/verb-001.tlg +++ /dev/null @@ -1,20 +0,0 @@ -This is a generated file for the l3build validation system. -Don't change this file in any respect. -============================================================ -TEST 1: testing \verb command with measure=hbox -============================================================ -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <7> on input line .... -LaTeX Font Info: External font `cmex10' loaded for size -(Font) <5> on input line .... -============================================================ -============================================================ -TEST 2: testing \verb command with measure=vbox -============================================================ -============================================================ -============================================================ -TEST 3: testing verb option and control sequences -============================================================ -============================================================ -[1 -] (verb-001.aux)