我是 Latex 新手。我已经写完了文档。现在我想对主文档中的引文进行排序。有没有命令可以自动执行此操作?
例如:
我希望它像这样:
阿克森[9,10]。
\usepackage{natbib}
\begin{document}
d\cite{STA02}
....
Achsen auf\cite{STA01, STA02}
\bibliographystyle{elsarticle-num}
\bibliography{references.bib}
\end{document}
文件refernces.bib
@misc{STA01,
title={{Anteil der Lkw an der Transportleistung im Güterverkehr in Deutschland bis 2023}},
HOWPUBLISHED = {\url{https://de.statista.com/statistik/daten/studie/12195/umfrage/anteil-der-lkw-am-gueterverkehr-in-deutschland/}},
url={https://de.statista.com/statistik/daten/studie/12195/umfrage/anteil-der-lkw-am-gueterverkehr-in-deutschland/},
author = {Martin Kords},
Year = { 26.05.2020},
}
@misc{STA02,
title={{Güterverkehr in Deutschland nach Verkehrszweigen 2019}},
HOWPUBLISHED = {\url{https://de.statista.com/statistik/daten/studie/75784/umfrage/gueterverkehr-in-deutschland-nach-verkehrszweigen/}},
url={https://de.statista.com/statistik/daten/studie/75784/umfrage/gueterverkehr-in-deutschland-nach-verkehrszweigen/},
author = {Martin Kords},
Year = { 03.09.2020},
}
答案1
为了对数字样式的引用标注进行排序,您需要使用natbib
以下选项加载引用管理包sort&compress
:
\usepackage[sort&compress,<any other options>]{natbib}