删除书目名称

删除书目名称

我用 ”巴别塔« 带有选项的包bahasa。出于参考书目的目的,我创建了“Daftar Pustaka”部分,但thebibliography环境生成了“Pustaka”。因此有两个标题。如何删除名称thebibliography

答案1

您可以简单地更新\refname,它决定了参考书目标题。

\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[bahasa]{babel}
\usepackage[nottoc,numbib]{tocbibind}

\addto{\captionsbahasa}{%
  \renewcommand*{\refname}{Daftar Pustaka}
}

\begin{document}
  \tableofcontents

  \begin{thebibliography}{9}
    \bibitem{key} Bibliography item
  \end{thebibliography}
\end{document}

更新: 与评论相对应,参考文献的标题现在是一个编号部分,并在目录中有一个条目。

相关内容