更改参考书目标题(Apacite 和 Babel)

更改参考书目标题(Apacite 和 Babel)

今天我尝试设置硕士论文的 latex 文档,但在参考书目方面遇到了一些麻烦。长话短说,我换用了 Apacite 软件包,它提供了我需要的一切。不过有一件小事。我尝试将参考书目的标题从“参考文献”更改为“参考书目”,但没有成功。

%Documentclass-------------------------------------------------------------
\documentclass[a4paper,12pt]{article}

%Packages-------------------------------------------------------------
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage[left=2.5cm,right=2.5cm,top=2cm,bottom=2.5cm]{geometry}
\usepackage{acro}
\usepackage{hyperref}
\usepackage[apaciteclassic,sectionbib]{apacite}

%Configuration-------------------------------------------------------------
\setlength{\parskip}{0.2cm}
\setlength{\parindent}{0cm}
\acsetup{first-style=short}
\addto{\captionsenglish}{
    \renewcommand{\refname}{Bibliography}
    \renewcommand{\contentsname}{Table of Contents}
}

%Document-------------------------------------------------------------
\begin{document}
\newpage\null\thispagestyle{empty}\newpage

\pagenumbering{roman}
\setcounter{page}{3}

\tableofcontents
\cleardoublepage

\printacronyms[include-classes=abbrev,name=List of Abbreviations]
\addcontentsline{toc}{section}{List of Abbreviations}
\cleardoublepage

\listoffigures
\addcontentsline{toc}{section}{\listfigurename}
\cleardoublepage

\listoftables
\addcontentsline{toc}{section}{\listtablename}
\cleardoublepage

\pagenumbering{arabic}
\setcounter{page}{1}
\section{Introduction}

\newpage    
\pagenumbering{roman}
\setcounter{page}{7}
%References-------------------------------------------------------------
\bibliographystyle{apacite}
\bibliography{bibliography}

%Appendix-------------------------------------------------------------
\newpage    
\appendix
\section{Title of Appendix A}
\end{document}

我知道,因为我使用的是 babel,所以我需要用 \addto{\captionsenglish}{...} 包围 \renewcommand,这可以完美地更改目录的标题,但对于参考书目却不起作用。有人能帮忙吗?

问候,大卫

答案1

您需要加载babel apacite.(并且apacite需要在之后加载hyperref;见下文。)

...
\usepackage{hyperref}

\usepackage[apaciteclassic,sectionbib]{apacite}
\bibliographystyle{apacite}

\usepackage[english]{babel}
\addto{\captionsenglish}{%
    \renewcommand{\refname}{Bibliography}%
    \renewcommand{\contentsname}{Table of Contents}}
...

apacite该问题在该软件包的用户指南第 40 页的条目下有所提及,尽管不是很清楚\refname

该软件包的用户指南第 8.2 节apacite提供了以下信息:

apacite兼容hyperref,前提是 apacite已加载 hyperref

相关内容