latex参考文献添加编号

有时候我们会需要thebibliography前面添加section编号。
我们可以添加如下指令:

\documentclass{article}
\usepackage{xpatch}
\xpatchcmd{\thebibliography}{\section*}{\section}{}{}

\begin{document}
	\begin{thebibliography}{99}
    	\bibitem{bib-001} 这是一篇文献
	\end{thebibliography}
\end{document}

这样就会在参考文献前面自动加上section顺序啦。注意这个编号的顺序是服从于\section哒。

你可能感兴趣的:(latex)