我正在尝试将参考书目的标题转换为“SomeName”,但以下代码块不起作用:/ 我的意思是参考书目已打印,但标题错误。
\begin{document}
\begin{thebibliography}{9}
\renewcommand{\refname}{SomeName}
\bibitem{slave}
\url{google.com}
\end{thebibliography}
\end{document}
答案1
文档类article
提供了以下(大大简化的)环境定义thebibliography
:
\newenvironment{thebibliography}[1]
{\section*{\refname}%
...}
{...}
其中...
表示“其他内容”。article
文档类还提供了以下定义\refname
:
\newcommand\refname{References}
这一切的结果是什么?好吧,对于重新定义\refname
,比如说,
\renewcommand{\refname}{SomeName}
要影响在参考书目开头排版的未编号节级标题的外观,必须进行重新定义前,而不是在\begin{thebibliography}{9}
声明之后。