0

在 JabRef (v5.1) 中,如果我使用“新条目”选项卡使用 DOI 构建引用,我希望它在 URL 字段中添加 DOI 附加在https://doi.org/后面,例如 if我使用 doi "10.1016/j.ymssp.2019.106551" 我希望它填写以https://doi.org/10.1016/j.ymssp.2019.106551提交的 URL 。

有没有办法做到这一点,无论是在参考创建阶段还是之后?

请注意,doi2bib.org 执行此操作,对于 10.1016/j.ymssp.2019.106551 它返回 url = https://doi.org/10.1016/j.ymssp.2019.106551

这是 doi2bib.org 的完整 bibtex 条目,可以根据需要执行此操作。

@article{Downey2020,
  doi = {10.1016/j.ymssp.2019.106551},
  url = {https://doi.org/10.1016/j.ymssp.2019.106551},
  year = {2020},
  month = apr,
  publisher = {Elsevier {BV}},
  volume = {138},
  pages = {106551},
  author = {Austin Downey and Jonathan Hong and Jacob Dodson and Michael Carroll and James Scheppegrell},
  title = {Millisecond model updating for structures experiencing unmodeled high-rate dynamic events},
  journal = {Mechanical Systems and Signal Processing}
}
4

1 回答 1

2

您根本不需要 URL 字段,这只是不必要和多余的信息。如果您使用合适的参考书目样式,例如 的默认样式biblatex,doi 字段将自动打印为指向正确网站的可点击链接:

\documentclass{article}

\usepackage{biblatex}
\addbibresource{test.bib}

\usepackage{hyperref}

\begin{document}

\cite{Downey2020}

\printbibliography

\end{document}

在此处输入图像描述

于 2020-09-20T09:49:15.880 回答