我想在回忆录的章节标题中添加脚注。它在编号章节(\chapter
)中按预期工作,但在未编号章节()中显示大量错误\chapter*
。MWE:
\documentclass{memoir}
\begin{document}
\chapter*{this fails\footnotemark{}}
\chapter[this works fine]{this works fine\footnotemark{}}
\end{document}
有超过 100 个错误,但第一个是The control sequence marked <to be read again> should not appear between \csname and \endcsname.
有什么解决办法?
答案1
说实话,我不太清楚为什么会发生这种情况。但对于这类问题,只要保护好有问题的问题,通常就可以解决。
在这种情况下\protect\footnotemark{}
似乎有效。