对于某些 APS 期刊,RevTeX 类会排版参考书目中的所有脚注(作为尾注)。虽然我尝试使用 RevTeX4 时效果很好,但在 RevTeX4-1 下执行此操作时始终会遇到问题。这是一个简洁的示例。
\documentclass[prl,aps,10pt,twocolumn]{revtex4-1}
\begin{document}
\title{A nearly minimal example using RevTeX4-1}
\author{Niel de Beaudrap}
\noaffiliation
\date{\today}
\begin{abstract}
In this letter, we attempt to typeset a footnote.
We find that it fails to be properly typeset with the package ``revtex4-1'',
whereas it works properly with the package ``revtex4''.
\end{abstract}
\maketitle
The following should appear in the bibliography~\footnote{%
This compiles correctly under RevTeX4.}.
It is our hope that others are able to reproduce our results
and identify potential sources of error.
\begin{thebibliography}{99}
\end{thebibliography}
\end{document}
如果我使用该nofootinbib
选项(关闭结束注释),则该包在 RevTeX4 和 RevTeX4-1 下都能正常运行。
我可以手动将脚注插入参考书目,但我不想这样做。帮忙吗?
答案1
您必须运行 bibtex 才能显示脚注,因此特别地,您不能使用\begin{thebibliography}{99}...\end{thebibliography}
而是使用\bibliography{mybib}
,RevTeX4.1 将重写它,就好像它说的那样\bibliography{mybib,mypaperNotes}
,并创建一个mypaperNotes.bib
包含尾注的文件。