尝试更改参考书目/参考文献标题

尝试更改参考书目/参考文献标题

我正在尝试将标题从“参考文献”更改为“引用文献”,并将其插入到新的空白页中。

我试过了\refname,但是没有用,pdf 中只有一个空白。我的文档如下:

\documentclass{article}

\usepackage[notes]{biblatex-chicago}

\bibliography{bibliography}
\begin{document}

Hello World!\autocite{clare2}
\pagebreak
\renewcommand\refname{Works Cited}
\end{document}

答案1

biblatex使用“书目字符串”作为书目标题(除其他外),因此重新定义\bibname(对于bookreport类)或\refname(对于article)不起作用。尝试将以下内容添加到您的序言中:

\DefineBibliographyStrings{english}{%
  references = {Works Cited},
}

(正如 Mico 所指出的,你缺少了\printbibliography。)可编译示例:

\documentclass{article}

\usepackage[notes]{biblatex-chicago}

\DefineBibliographyStrings{english}{%
  references = {Works Cited},% replace "references" with "bibliography"  for `book`/`report`
}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@misc{A01,
  author = {Author, A.},
  year = {2001},
  title = {Alpha},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\nocite{*}

\begin{document}

\section{foo}

\clearpage

\printbibliography

\end{document}

在此处输入图片描述

相关内容