未显示脚注

未显示脚注

正如标题所说。

\documentclass[reprint, prb]{revtex4-1}
\usepackage{scrextend}

\begin{document}

some text here.
\footnote{aaa}

\end{document}

这不会产生任何脚注。它只是给出上述警告。(我的正文很长,但我只是想举个例子。在正文中它实际上也给出了一个警告:第 1 页的引用注释 0 未定义。)

我已经研究过 TS 中的其他类似问题,但没有一个能解决我的问题。谢谢。

答案1

默认情况下,revtex4-1将脚注放在参考书目中。可以使用 禁用此功能,nofootinbibprb无论如何都会将它们放在参考书目的开头。因此,要将脚注放在页面底部,您需要:

\documentclass[reprint, nofootinbib]{revtex4-1}
\usepackage{scrextend}

\begin{document}

some text here.
\footnote{aaa}

\end{document}

页面底部的脚注

否则,您需要排版您的参考书目以使注释显示出来:

\documentclass[reprint, prb]{revtex4-1}
\usepackage{scrextend}

\begin{document}

some text here.
\footnote{aaa}

\bibliography{apssamp}

\end{document}

bib <code>prb</code> 选项中的脚注

相关内容