在参考书目中引用

在参考书目中引用

我正在写论文,想用《塔木德》中的名言来开始我的参考书目:

“引用其来源的人会给世界带来救赎” (Avot 6:5)

也就是说,我正在使用 \bibliography 命令,并且我想将引文放在标题和引用来源列表之间

答案1

使用 natbib 您通常可以重新定义 \bibpreamble:

\documentclass{book}
\usepackage{natbib}
\begin{document}
\cite{doody}
\bibliographystyle{plainnat}
\def\bibpreamble{Some text before the bib}
\bibliography{biblatex-examples}


\end{document}

在此处输入图片描述

答案2

万一您决定切换到 biblatex:

\defbibnote{myprenote}{Here goes my text.}
\printbibliography[prenote=myprenote]

答案3

使用epigraph包(< texdoc epigraph第 2.6 节题跋书目)。那里给出的代码经过适当的编辑后,还可以用于将题词添加到其他内容(如索引或摘要)中。

相关内容