Como adicionar linhas a uma tabela por meio de um comando

Como adicionar linhas a uma tabela por meio de um comando

Eu gostaria de fazer algo muito semelhante a esta pergunta aqui: Adicionar linhas à tabela com macro

No entanto, não consigo fazê-lo funcionar no meu caso de uma tabela de log de versão criada com o tabularraypacote e xparseos comandos.

Meu MNWE atual (exemplo mínimo que não funciona ...) é este:

\documentclass{article}

\usepackage{xparse}
\usepackage{tabularray}

\makeatletter

\let\@history\@empty
\NewDocumentCommand \historyentry {m m m} {%
  \g@addto@macro\@history{#1 & #2 & #2\\}
}

\NewDocumentCommand \history {} {%
  \begin{tblr}{colspec={l l l}}
    Version & Date & Comment \\ 
    \@history{}
  \end{tblr}
}
\makeatother

\historyentry{1.0}{2023-03-01}{First release}
\historyentry{2.0}{2023-03-15}{Second release}

\begin{document}
\history
\end{document}

que quando compilado usando LuaLaTeX (ou PDFLaTeX) resulta neste erro:

This is LuaHBTeX, Version 1.15.0 (TeX Live 2022) 
 restricted system commands enabled.
(./test.tex
LaTeX2e <2022-11-01> patch level 1
 L3 programming layer <2023-01-24> (/home/mnoethe/.local/texlive/2022/texmf-dist/tex/latex/base/article.cls
Document Class: article 2022/07/02 v1.4n Standard LaTeX document class
(/home/mnoethe/.local/texlive/2022/texmf-dist/tex/latex/base/size10.clo)) (/home/mnoethe/.local/texlive/2022/texmf-dist/tex/latex/l3packages/xparse/xparse.sty (/home/mnoethe/.local/texlive/2022/texmf-dist/tex/latex/l3kernel/expl3.sty (/home/mnoethe/.local/texlive/2022/texmf-dist/tex/latex/l3backend/l3backend-luatex.def))) (/home/mnoethe/.local/texlive/2022/texmf-dist/tex/latex/tabularray/tabularray.sty) (./test.aux) (/home/mnoethe/.local/texlive/2022/texmf-dist/tex/latex/base/ts1cmr.fd)
! Misplaced alignment tab character &.
\@history ->1.0 &
                  2023-03-01 & 2023-03-01\\2.0 & 2023-03-15 & 2023-03-15\\
l.25 \history
           
? 

Qualquer ajuda sobre isso seria apreciada!

O mesmo código funciona ao usar um padrão \begin{tabular}{l l l}em vez do \begin{tblr}{colspec={l l l}}.

Responder1

Você precisa dizer tabularraypara primeiro expandir a \@historymacro antes de compor a tabular. Você pode fazer isso usando a expandopção (consulte a seção 3.2.3 "Expandir macros primeiro" do tabularraymanual do pacote):

\documentclass{article}
\usepackage{tabularray}

\makeatletter
\let\@history\@empty
\NewDocumentCommand \historyentry {m m m} {%
  \g@addto@macro\@history{#1 & #2 & #3 \\}
}

\NewDocumentCommand \history {} {%
  \begin{tblr}[expand=\@history]{colspec={l l l}}
    Version & Date & Comment \\ 
    \@history{}
  \end{tblr}
}
\makeatother

\historyentry{1.0}{2023-03-01}{First release}
\historyentry{2.0}{2023-03-15}{Second release}

\begin{document}
\history
\end{document}

insira a descrição da imagem aqui

informação relacionada