我已经创建了一个.bib
包含资源的文件。我正在使用biblatex
。style=numeric
我希望在我的文档中按数字顺序排列,因为我已在.bib
文件中插入了相应的资源。
答案1
使用包选项sorting=none
并添加\nocite{*}
序言。请注意,这还会为您未在文档正文中引用的条目分配编号。
\documentclass{article}
\usepackage[style=numeric,sorting=none]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{B02,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}
@misc{C03,
author = {Cuthor, C.},
year = {2003},
title = {Charlie},
}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\nocite{*}
\begin{document}
Some text \autocite{A01,B02,C03}.
\printbibliography
\end{document}