在参考文献中添加注释和/或脚注

在参考文献中添加注释和/或脚注

我想在参考文献列表的开头添加一个段落。或者,我想在“参考书目”一词后立即添加脚注。有没有简单的方法可以完成这两件事?要添加参考文献列表,我使用以下命令。

\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{plainnat}
\bibliography{reference}

答案1

您可以使用\bibsection\bibpreamble提供natbib(看起来您正在使用它)

\documentclass[12pt]{book}
\usepackage{natbib}
\bibliographystyle{plainnat}

\begin{document}
\tableofcontents

\nocite{*}
\addcontentsline{toc}{chapter}{Bibliography}
\renewcommand\bibpreamble{This is some text}
\renewcommand{\bibsection}{\chapter*{\bibname\footnote{Some foot note}}\markboth{\leftmark}{\bibname}}
\bibliography{xampl}
\end{document}

在此处输入图片描述

相关内容