答案1
其实代码中有两个bug,首先,footnote
没有正确定义,代码应该是:
\documentclass{article}
\usepackage{hyperref}
\begin{document}
See \footnote{text}. % OK
\end{document}
但这隐藏在一堆文本中,我无法找到错误,因为 LaTeX 不会针对此特定行生成任何错误消息。其次,如果不使用 hyperref,则不会出现该消息:
\documentclass{article}
\begin{document}
See \footnote{\footnote{text}}. % Not OK, but does not produce a warning
\end{document}
上述代码没有产生任何警告或错误消息。但是脚注没有正确显示。我们看到脚注是空的。