使用 \renewcommand 更改参考文献名称无效

使用 \renewcommand 更改参考文献名称无效

我正在用 LaTeX 创建一篇论文样式的文档,需要使用大学布局,这是我保存并添加到 premable 中的预制代码。目前,参考书目的标题为“参考”,但我希望它读作“参考书目”。我在这里看到过其他页面,它们告诉你添加此行

\renewcommand{\bibname}{Bibliography} 

我已经这样做了,但对我来说没有任何改变。下面是我使用的代码,我做错了什么吗?我需要在参考书目本身中添加命令吗?

\documentclass[a4paper,12pt]{report}
\renewcommand{\bibname}{Bibliography}
\begin{document}

\begin{thebibliography}{99}


    \bibitem{derbyshire} J. Derbyshire.{\em Unknown Quantity}, Atlantic, London (2007).

\end{thebibliography}

\end{document}

答案1

\documentclass[a4paper,12pt]{report}
\usepackage{bbkproject}

\makeatletter
\gdef\@bibname{Bla}
\makeatother


\begin{document}


\begin{thebibliography}{99}


    \bibitem{derbyshire} J. Derbyshire.{\em Unknown Quantity}, Atlantic, London (2007).

\end{thebibliography}

\end{document}

在此处输入图片描述

相关内容