无法编译禁忌

无法编译禁忌

我一直尝试用 xelatex 编译以下 tabu 环境,但无济于事:

\documentclass{article}
\usepackage{xcolor}
\usepackage{tabu}




\begin{document}
\taburowcolors 10{green!25 .. yellow!80}
\begin{tabu}{X[-1]X}
%\everyrow{\midrule}
\repeatcell 2{
rows=10,
text/col1=Teste,
text/col2={Row number
       \row$=$\thetaburow},
}
\end{tabu}

\end{document}

它会产生一个错误:“未定义的控制序列 \end{tabu}”。

答案1

您的示例不会产生您所述的错误。它会产生:

! Undefined control sequence.
<inserted text>  \repeatcell

\repeatcell没有被定义,tabu并且text/col1=Teste,语法看起来tikz/pgf比 还要多tabu

添加

 \usepackage{makecell,interfaces-makecell}

修复问题。

相关内容