在参考书目中插入首短语

在参考书目中插入首短语

有没有办法在参考书目中实际出版物列表之前插入一个短语?我想要做的是有一个这样的短语

有关相关出版物的完整列表,请参阅 www.example.com

后面是标准的出版物清单。

我会将它与 moderncv 一起使用

答案1

如果您准备使用该biblatex包,有一个简单的解决方案。然后您可以使用\defbibnote{<name>}{<note>}(参见 biblatex 文档 v. 2.8 第 77 页),它接受两个参数,一个名称和一个内容。然后在您希望打印参考书目时调用它,如下所示

\printbibliography[prenote=<name>]

以下是一个例子:

\begin{filecontents*}{references.bib}
@BOOK{childs_temperature,
  title = {Practical Temperature Measurement},
  publisher = {Butterworth - Heinemann},
  year = {2001},
  author = {Childs, Peter R N},
  address = {Great Britain},
  edition = {1},
  isbn = {0 7506 5080 X}
  }

  @PHDTHESIS{hashemian,
  author = {Hashemian, Hashem Mehrdad},
  title = {Measurements of dynamic temperatures and pressures in nuclear power plants},
  school = {{The University of Western Ontario}},
  year = {2011},
  type = {PhD {T}hesis}
  }
\end{filecontents*}

\documentclass{moderncv}
\moderncvstyle{casual}

\firstname{Bob}
\familyname{Example}
\title{Curriculum Vitae}
\address{street}{city}
\mobile{123}
\email{[email protected]}


\usepackage[style=alphabetic,backend=biber]{biblatex}
\addbibresource{references.bib}
\defbibnote{example}{% your note goes here, allows for formatting
                     % multiple paragraphs, etc.
}


\begin{document}

\maketitle

\nocite{*}
\printbibliography[prenote=example]
\end{document}

在此处输入图片描述

相关内容