[Tex/LaTex] Footnote in revtex4

footnotesrevtex

Can somebody explain to me how to make a footnote in revtex4, so that it is placed on the same page as text and not in the bibliography?

Best Answer

revtex4 has an option nofootinbib (presumably this will change all footnotes):

\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}

enter image description here

Related Question