有人能向我解释如何在 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}