我观察到了同样的行为先前的问题。但是,我已经能够弄清楚问题是什么:基本上,使用多个脚注会导致 () 出现。
例如,以下 TeX 代码可以正确编译:
\documentclass[a4paper,amsmath,amssymb,jcp,aip,preprint]{revtex4-1}
\begin{document}
Here's text with one footnote.\footnote{First footnote.}
\bibliographystyle{apsrev4-1}
\end{document}
但以下代码会返回多余的括号:
\documentclass[a4paper,amsmath,amssymb,jcp,aip,preprint]{revtex4-1}
\begin{document}
Here's text with one footnote.\footnote{First footnote.}
But it breaks with two footnotes.\footnote{Second breaks it.}
\bibliographystyle{apsrev4-1}
\end{document}
我想不出为什么会出现这种情况的逻辑原因,这让我相信这是一种错误。