如何使用 \bibliography{...} 命令对参考文献部分进行编号?

如何使用 \bibliography{...} 命令对参考文献部分进行编号?

我使用\bibliography{bibtexfile}{}命令生成参考书目,但这会创建一个参考文献部分,其中隐藏了编号。如何显示该部分的编号?

答案1

使用tocbibind包和numbib选项这将适用于标准类,例如articlebook

\documentclass{book}

\usepackage{blindtext}

\usepackage[numbib,nottoc]{tocbibind}

\usepackage{hyperref}


\begin{filecontents}{mybiblo.bib}
  @article{MBBL2014,
    author = {Ministeriet for by Bolig og Landdistrikter},
    title = {{Matriklens Udvidelse}},
    url = {http://grunddata-ejendom-adresse.dk/matriklens\_udvidelse},
    urldate = {2015-04-20},
    year = {2014} 
  }
\end{filecontents}






\begin{document}
\tableofcontents
\blinddocument

\cite{MBBL2014}


\clearpage

\bibliographystyle{unsrt}
\bibliography{mybiblo}


\end{document}

在此处输入图片描述

相关内容