如何连接文本片段?

如何连接文本片段?

我想连接文本片段。我的尝试:

\documentclass[12pt,a4paper]{article}
\usepackage{pgffor}

\begin{document}

\def\mytext{zero}
\foreach \t in {one, two, three, four}{
    \edef\tmp{\mytext\ + \t}
    \xdef\mytext{\tmp}
}
Text: (\mytext).
\end{document}

但是当我使用 '\edef' 和 '变音符' 时,它会失败并出现“非法参数编号”错误。重音字符(例如 )áü可以的。

\foreach \t in {one, two, three, four, caça}{...  % caça issues an error

无论我使用 UTF-8 和包,似乎都会出现这个问题inputenc

这个问题有解决方法吗?文本将绝不进行格式化(例如,粗体、斜体)。

相关内容