在JabRef (v5.1)中,如果我使用"new entry“选项卡来构建一个使用DOI的引用,我希望它用DOI填充https://doi.org/后面的URL字段,例如,如果我使用doi "10.1016/j.ymssp.2019.106551”,我希望它用https://doi.org/10.1016/j.ymssp.2019.106551填充URL字段。
有没有办法做到这一点,无论是在引用创建阶段还是之后?
请注意,对于10.1016/j.ymssp.2019.106551,doi2bib.org会返回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}
}发布于 2020-09-20 17:49:16
您根本不需要URL字段,这只是一些不必要和多余的信息。如果您使用合适的参考书目样式,例如默认样式biblatex,则DOI域将自动打印为指向正确网站的可点击链接:
\documentclass{article}
\usepackage{biblatex}
\addbibresource{test.bib}
\usepackage{hyperref}
\begin{document}
\cite{Downey2020}
\printbibliography
\end{document}

https://stackoverflow.com/questions/63975079
复制相似问题