我有以下問題。我正在使用該tabu
包來創建表,但不是像這樣的格式字串:\begin{tabu}{ccc}
我想使用這樣的格式字串(作為字串變數):\begin{tabu}{\reptemp}
。
這是我的程式碼:
\documentclass{article}
\usepackage{forloop,tabu}
\begin{document}
\def\reptemp{}
\newcounter{ct}
\forloop{ct}{1}{\value{ct} < 5}%
{%
\g@addto@macro\reptemp{c}
}
\begin{tabu}{\reptemp}
\end{tabu}
\end{document}
並得到如下編譯錯誤:
! Package array Error: Illegal pream-token (\reptemp): 'c' used.
我希望你能告訴我如何解決這個問題。
答案1
環境tabu
不會對序言參數進行擴展。
\documentclass{article}
\usepackage{forloop,tabu}
\def\reptemp{}
\makeatletter
\newcounter{ct}
\forloop{ct}{1}{\value{ct} < 5}%
{%
\g@addto@macro\reptemp{c}
}
\makeatother
\newenvironment{xtabu}[1]
{\begingroup\edef\x{\endgroup
\unexpanded{\begin{tabu}}{\unexpanded\expandafter{#1}}}\x}
{\end{tabu}}
\begin{document}
\begin{xtabu}{\reptemp}
1&2&3&4
\end{xtabu}
\end{document}
答案2
您需要在將巨集傳遞到環境之前對其進行擴充:
\def\starttabu#1{\begin{tabu}{#1}}
\expandafter\starttabu\expandafter{\reptemp}