MWE见链接https://paste.ubuntu.com/p/S2x5SfRVhY/
\documentclass[cn,15pt]{article}
\usepackage[UTF8]{ctex}
\RequirePackage[backend=biber,
natbib=true,
style=numeric-comp,
url=false,
doi=false]{biblatex}
\addbibresource{reference.bib}
%%----------------%%
\begin{document}
文献一\cite{RN2306}
文献二\cite{RN791}
\printbibliography[heading=bibliography,title=参考文献]
\end{document}
请将以下内容拷贝到 reference.bib
@article{RN2306,
author = {Yang, Yu Kun and Cheng, Yongjun and Peng, Yi Geng and Wu, Yong and Wang, Jian Guo and Qu, Yi Zhi and Zhang, Song Bin},
title = {Photodissociation cross sections of $\mathrm{BeH}^{+}$ in ultraviolet band},
journal = {Journal of Quantitative Spectroscopy and Radiative Transfer},
volume = {254},
pages = {107203},
ISSN = {0022-4073},
year = {2020},
type = {Journal Article}
}
@article{RN791,
author = {Salvat, F. and Fernández-Varea, J. M. and Jr, W. Williamson},
title = {Accurate numerical solution of the radial Schrödinger and Dirac wave equations},
journal = {Computer Physics Communications},
volume = {90},
number = {1},
pages = {151-168},
year = {1995},
type = {Journal Article}
}
如图:为什么开始出现的是文献[2],然后才是文献[1]? 在biblatex中,如何调整成按引用顺序排序?
我看了一下biblatex宏包,numeric-comp等几个选项好像都不好使。