revtex4 中的脚注

revtex4 中的脚注

有人能向我解释如何在 revtex4 中制作脚注,以便将其放在与文本同一页面上而不是参考书目中吗?

答案1

revtex4有一个选项nofootinbib(大概这会改变全部脚注):

\documentclass[nofootinbib]{revtex4}

\textheight=2in %just for this example
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{book,
author  = "Arnold Author",
title   = "Book title",
year    = "2012"
}
\end{filecontents}

\begin{document}
Some text\footnote{With a footnote} and a citation~\cite{book}.

\bibliography{\jobname.bib}
\end{document}

在此处输入图片描述

相关内容