我用它todonotes
来做论文笔记。我希望能够在一些较大的笔记上标注一些要点,如下所示:
\todo[inline]{
\begin{itemize}
\item blah blah blah
\end{itemize}
}
但我收到此错误信息:
! Argument of \reserved@a has an extra }.
<inserted text>
\par
l.9 }
我能做些什么来解决这个问题,或者基本上不值得尝试?
答案1
您必须使用以下caption
选项:
\documentclass{article}
\usepackage{todonotes}
\begin{document}
\todo[inline,caption={}]{
\begin{itemize}
\item blah blah blah
\end{itemize}
}
\end{document}
如第 12 页所述手动的否则,LaTeX 将尝试嵌入,minipage
从而导致错误。
答案2
prependcaption
如果在包选项中设置了该选项,则会出现冒号问题。
如果删除此选项,则设置的标题(如果标题为空,则为冒号)将不再显示在左侧。