我想改变参考书目中的参考文献的顺序。
我的参考资料命令是这样的:
[1] Author1Name, Title1
[2] Author2Name, Title2
[3] Author3Name, Title3
现在,如果我想更改此顺序?例如,假设我想将第三个更改为第一个。我该怎么做?
这是我的代码:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[
backend=biber,
style=numeric,
sorting=anyt
]{biblatex}
\addbibresource{citation.bib}
\begin{document}
\section{Introduction}
Let's cite! Einstein's journal paper \cite{Bsharma2020malnutrition} and Dirac's
book \cite{Azare2021use} are physics-related items. \cite{Ceinstein}
\printbibliography
\end{document}
这是。围兜文件:
@article{Ceinstein,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{\"o}rper}. ({German})
[{On} the electrodynamics of moving bodies]",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
DOI = "http://dx.doi.org/10.1002/andp.19053221004",
keywords = "physics"
}
@article{Azare2021use,
title={Use of Machine Learning to Determine the Information Value of a BMI Screening Program},
author={Zare, Samane and Thomsen, Michael R and Nayga Jr, Rodolfo M and Goudie, Anthony},
journal={American journal of preventive medicine},
volume={60},
number={3},
pages={425--433},
year={2021},
publisher={Elsevier},
}
@article{Bsharma2020malnutrition,
title={Malnutrition, health and the role of machine learning in clinical setting},
author={Sharma, Vaibhav and Sharma, Vishakha and Khan, Ayesha and Wassmer, David J and Schoenholtz, Matthew D and Hontecillas, Raquel and Bassaganya-Riera, Josep and Zand, Ramin and Abedi, Vida},
journal={Frontiers in nutrition},
volume={7},
pages={44},
year={2020},
publisher={Frontiers},
}
我尝试使用:
\usepackage[ backend=biber, style=numeric, sorting=anyt ]{biblatex}
因为我想根据标签名称更改顺序。但什么都没有改变。
你能帮我吗?