如何手动设置参考文献的编号并强制它们按照 .bib 文件内容确定的顺序排列?

如何手动设置参考文献的编号并强制它们按照 .bib 文件内容确定的顺序排列?

我正在用 LaTeX 创建参考书目。我使用 biblatex 并以 biber 作为后端,我需要创建如下参考书目列表:

在此处输入图片描述

我创建成功了,但是最后两个资源却反转了:

在此处输入图片描述

网站资源(BIPM.org KCDB)必须位于列表末尾,并且像第一个屏幕上那样显示数字 8。我真的不明白为什么我的环境会这样。我也尝试过使用 bibtex 而不是 biber+biblatex,尝试各种选项,在 bib 文件中交换资源……但都无法帮助我解决这个问题。

这是我的 .tex 文件的代码:

%...
\usepackage[backend=biber, style=ieee]{biblatex}
\addbibresource{References.bib}
%...
\begin{document}
%... another content
\printbibliography
\end{document}

这是我的.bib 文件的代码:

@misc{cipm1999mutual:1,
  title={Mutual recognition of...},
  author={CIPM, MRA},
  year={1999},
  publisher={International...}
}

@article{allisy2009international:2,
  title={International framework...},
  author={Allisy, Penelope...},
  journal={Metrologia},
  volume={46},
  number={2},
  pages={S1},
  year={2009},
  publisher={IOP Publishing}
}

@article{picard2016keycomparison:3,
  author = {Picard, Susanne...},
  year = {2016},
  month = {01},
  pages = {06012-06012},
  title = {Key comparison...},
  volume = {53},
  journal = {Metrologia},
  doi = {10.1088/0026-1394/53/1A/06012}
}

@article{kim2017building:4,
  title={Building a graphite...},
  journal={Nuclear Engineering and Technology},
  volume={49},
  number={4},
  pages={810--816},
  year={2017},
  publisher={Elsevier}
}

@article{morishita2013standard:5,
  title={A standard for...},
  author={Morishita...},
  journal={Radiation protection dosimetry},
  volume={154},
  number={3},
  pages={331--339},
  year={2013},
  publisher={Oxford University Press}
}

@article{shimizu2015comparison:6,
  title={Comparison of the NMIJ...},
  author={Shimizu, M and...},
  journal={Radiation protection dosimetry},
  volume={164},
  number={3},
  pages={181--186},
  year={2015},
  publisher={Oxford University Press}
}

@article{huq2006absorbed:7,
  title={Absorbed dose determination in external beam radiotherapy: an international code of practice for dosimetry based on standards of absorbed dose to water},
  author={Huq, M Saiful},
  year={2006},
  publisher={Citeseer}
 }

@misc{bipm2021kcdb:8,
  author={BIPM, Home},
  title={KCDB. The BIPM Key Comparison Database},
  howpublished={\url{https://www.bipm.org/kcdb/}},
  note={Accessed: Jul. 4, 2021}
}

我还找到了解决方案:这里使用 natlib 部分解决了我的问题。所有资源都已到位,但...最终文本中的链接不起作用 -_- 数字 ([1]、[2]、...) 已绘制,但单击时没有任何反应。

那么,我如何使用 latex/biblatex/natlib 或者 smth 来做到这一点?._.

相关内容