以下(不完全是)MWE
\documentclass{acmart}
\usepackage{todonotes}
\begin{document}
\title{ACM Class and the todonotes package}
\author{Author}
\maketitle
\todo{A todo.}
\listoftodos
\end{document}
产生以下错误:
! Missing \endcsname inserted.
<to be read again>
\@@par
l.9 \end
{document}
而下面的代码
\documentclass{acmart}
\usepackage{todonotes}
\begin{document}
\title{ACM Class and the todonotes package}
\author{Author}
\maketitle
\todo{A todo.}
\listoftodos\\
\end{document}
编译得很好(使用 TeX Live 2017)。
有了该类,article
我不必添加换行符\\
,或者更一般地,不必添加换行符作为{}
解决\listoftodos
方法。似乎存在不兼容性?这可以看作是acmart
类或todonotes
包中的错误吗?谢谢!