如何使用 AIP 模板 (revtex4) 将脚注放在页面底部,而不是参考书目?

如何使用 AIP 模板 (revtex4) 将脚注放在页面底部,而不是参考书目?

这是来自的一个最小工作示例AIP 模板

\documentclass[%
aip,
amsmath,amssymb,
reprint
]{revtex4-1}

\begin{document}
    This is the body.\footnote{This is a footnote.}
    \bibliography{aipsamp}% Produces the bibliography via BibTeX.   
\end{document}

所发生的情况是,当它编译时,它会将脚注放在参考书目中,而我希望脚注显示在列或页面的底部。 编译文档

答案1

您可以给出nofootinbib选项\documentclass。例如,

\documentclass[%
    aip,
    amsmath,amssymb,
    reprint,
    nofootinbib
]{revtex4-1}

\begin{document}
This is the body.\footnote{This is a footnote.}
This is a citation: \cite{feyn54}.
\bibliography{aipsamp}% Produces the bibliography via BibTeX.   
\end{document}

这记录在revtex 文档目录中的summary4-1.pdf(或) 文件中。summary4-2.pdf

上述文档的缺点是,对脚注和参考书目的引用都采用上标数字的形式。因此,您可能需要更改引用样式。一种简单的方法是将选项更改aip为其他期刊的选项,例如aps

相关内容