longtabu 缺失 } 插入错误

longtabu 缺失 } 插入错误

我收到此错误:

(./template/changelog.tex
./template/changelog.tex:36: Missing } inserted.
<inserted text> 
                }
l.36 \end{longtabu}

当我编译一个多文件项目时。

变更日志.tex:

\newcommand*\mytablecontents{}
\foreach \x [count=\nj] in \modifiche
{
    \foreach \y [count=\ni] in \x
    {
        \ifnum\ni=5
            \xappto\mytablecontents{\y}
            \gappto\mytablecontents{\\}
            \gappto\mytablecontents{\hline}
        \else
            \xappto\mytablecontents{\y&}
        \fi
    }
}

\section*{Diario delle modifiche}

% Impostazioni della tabella
\tabulinesep = 2mm % padding
\taburowcolors 2{pari .. dispari} % colori delle righe

\begin{longtabu}{|X[-1,c]|X[-1,c]|X[1,c]|X[0.6,c]|X[1.3]|} % larghezza delle colonne
\hline

\rowcolor{header} % colore dell'header

% header
\textbf{Versione} & \textbf{Data} & \textbf{Nominativo}             & \textbf{Ruolo}         & \multicolumn{1}{c|}{\textbf{Descrizione}}\\
\hline

\endfirsthead
\endhead

\mytablecontents

\end{longtabu}

我不明白哪里}缺少了什么。

相关内容