我有一个乳胶页面并显示以下结构中的参考文献:
\section{References}
\begin{thebibliography}{9}
\bibitem{aa6401}
... ...
\bibitem{aa6060}
... ...
\end{thebibliography}
标题参考显示了两次。这是因为\section{References}
和 都begin{thebibliography}
写出了这个标题。
但虽然\section{References}
页眉的其余部分是按顺序编号的,但该begin{thebibliography}
部分会写入页眉参考无编号。
我现在将删除\section{References}
。但是我怎样才能将begin{thebibliography}
编号添加到标题中呢?
我使用article
documentclass。
答案1
如果你使用标准article
类,那么添加
\usepackage{etoolbox}
\patchcmd{\thebibliography}{*}{}{}{}
添加到文档序言中。例如:
\documentclass{article}
\usepackage{etoolbox}
\patchcmd{\thebibliography}{*}{}{}{}
\begin{document}
\section{Text}
Something.
\begin{thebibliography}{9}
\bibitem{duck} D. Duck, Life of Uncle Scrooge, Duckburg, 2012
\end{thebibliography}
\end{document}