我使用\bibliography{bibtexfile}{}
命令生成参考书目,但这会创建一个参考文献部分,其中隐藏了编号。如何显示该部分的编号?
答案1
使用tocbibind
包和numbib
选项这将适用于标准类,例如article
和book
。
\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}