我无法使用 \footnote 在文档中添加脚注

我无法使用 \footnote 在文档中添加脚注

当我尝试在章节标题中添加脚注时(尽管在添加到正文时我也遇到了同样的问题),使用

\section{TITLE \protect\footnote{footnote here with \cite{citation}}}

我明白了标题[? ]在我编写的文档中没有脚注。

我正在使用的代码/设置是:

%%%%% Document Setup %%%%%%%%

\documentclass[10pt,twocolumn, nofootinbib]{revtex4}    


\usepackage{times}                          
\usepackage{xcolor}
\usepackage[a4paper, left=1.85cm, right=1.85cm,top=1.85cm, bottom=1.85cm]{geometry}       

\usepackage[font=small, labelfont=bf]{caption}                      


\usepackage{graphics,graphicx,epsfig,ulem}  
\usepackage{amsmath}                        

\usepackage{etoolbox}                       

\makeatletter
\patchcmd{\frontmatter@RRAP@format}{(}{}{}{}
\patchcmd{\frontmatter@RRAP@format}{)}{}{}{}
\renewcommand\Dated@name{}
\makeatother

\usepackage{fancyhdr}


\pagestyle{fancy}                           
\renewcommand{\headrulewidth}{0pt}
        

\def\bibsection{\section*{References}}        


%%%%% Document %%%%%  
\begin{document}

\begin{thebibliography}{}

\bibitem{ref01}

\end{thebibliography} 

\newpage

\section*{Appendix}



\end{document}

我怎样才能使脚注成为页面底部的脚注?此外,对于引用,我的参考文献部分位于我想要添加脚注的部分(附录)之前,这会有什么不同吗?

我尝试在章节标题和正文中添加带引文和不带引文的脚注,但均未成功

编辑 我已经添加nofootinbib到文档类别,现在我得到了脚注编号,但脚注没有出现在页面底部。

答案1

我将文档类从其原始形式进行了更改:

\documentclass[10pt,twocolumn]{revtex4}    

\documentclass[10pt,twocolumn, nofootinbib]{revtex4-1}    

这使得我可以在章节标题和正文中添加脚注。我无法在章节标题的脚注中引用,但可以在正文的脚注中引用。

相关内容