如何更改其他语言的参考书目标题?

如何更改其他语言的参考书目标题?

我已经使用了 \begin{thebibliography} ; end{thebibliography}

答案1

如果您使用该babel包,它将自动适应。

\documentclass{article}
\usepackage[catalan]{babel}
\begin{document}
\begin{thebibliography}{9}
  \bibitem{lamport94}
  Leslie Lamport,
  \emph{\LaTeX: a document preparation system},
  Addison Wesley, Massachusetts, 2nd edition, 1994.
\end{thebibliography}
\end{document}

在此处输入图片描述

catalan用您需要的任何语言进行替换。

对于非标准标题,使用

\renewcommand\refname{My non-standard bibliography title}

在参考书目之前设置标题我的非标准书目标题

相关内容