使用 BibTeX 重命名参考书目页面

使用 BibTeX 重命名参考书目页面

有没有办法重命名(或取消)使用 BibTeX 输出的参考书目页面的名称?如果是这样,名称是否取决于参考书目样式,还是 BibTeX 功能中固有的东西?

答案1

这并不依赖于 BibTeX,而是依赖于文档类。文章类在排版参考书目标题时使用宏\refname(定义为References);书籍和报告类使用\bibname(定义为Bibliography)。因此,请尝试将以下内容添加到您的序言中:

\renewcommand{\bibname}{Whatever floats your boat}

编辑:特殊的书目包可能使用不同的机制。

答案2

如果你使用 babel 设置语言,请务必小心。该\captions<lang>命令会覆盖所有内容。请使用以下命令

\documentclass[afrikaans, english,%... Global language selection
              ]{book}
\usepackage{babel}%.................. Language setup
    \addto{\captionsafrikaans}{\renewcommand{\bibname}{Lys van Verwysings}}
    \addto{\captionsenglish}{\renewcommand{\bibname}{List of References}}

答案3

Change bibliography heading

您可以通过在参考书目之前插入 ERT 元素(Insert→TeX)来更改参考书目的标题,使用以下命令: \renewcommand\refname{New References Header}\renewcommand\bibname{New Bibliography Header},取决于您使用的是文章还是报告/书籍类。

来源

我也尝试过\renewcommand\bibname{New Bibliography Header},但没有效果,但是用\renewcommand\refname{New References Header}就可以了。

答案4

title对于 BibLaTeX,设置以下选项\printbibliography

\printbibliography[title = {Whatever title you want to make}]

相关内容