簡體   English   中英

從 JabRef 的 DOI 字段自動填充 URL 字段

[英]Auto fill the URL field from the DOI field in JabRef

在 JabRef (v5.1) 中,如果我使用“新條目”選項卡使用 DOI 構建參考,我希望它用https://doi.org/后面的 DOI append 填充 URL 字段,例如,如果我使用 doi "10.1016/j.ymssp.2019.106551" 我希望它填寫 URL https://doi.org/10.1016/j.ymssp.2019.106551

有什么辦法可以做到這一點,無論是在參考創建階段還是之后?

請注意,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}
}

您根本不需要 URL 字段,那只是不必要的冗余信息。 如果您使用合適的參考書目樣式,例如biblatex的默認樣式,doi 字段將自動打印為指向正確網站的可點擊鏈接:

\documentclass{article}

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

\usepackage{hyperref}

\begin{document}

\cite{Downey2020}

\printbibliography

\end{document}

在此處輸入圖像描述

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM