我正在给《声学与振动杂志》(JSV)写一封信。
JSV 希望在参考文献中添加 DOI。
但我不能在参考文献中输入 DOI
这是我的设置。
\documentclass[1p]{elsarticle}
\usepackage{lineno,hyperref}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{graphics}
\usepackage{natbib}
\usepackage{hyperref}
\usepackage{url}
\biboptions{numbers,sort&compress}
\modulolinenumbers[5]
\journal{Journal of Sound and Vibration}
\bibliographystyle{elsarticle-num}
\bibliography{myrefer}
这是 bib 文件的示例。
@article{tichy1983active,
title={Active noise cancellation in ducts},
author={Tichy, Jiri and Warnaka, Glenn E and Poole, Lynn A},
journal={The Journal of the Acoustical Society of America},
volume={74},
number={S1},
pages={S25--S25},
year={1983},
publisher={Acoustical Society of America}
doi={10.1121/1.2020873}
}
我怎样才能将 DOI 添加到我的参考文献中?
答案1
缺少一个逗号:(publisher={Acoustical Society of America},
我认为这publisher
不用作文章字段,也许URL
或eprint
更有用)
尝试此代码
\documentclass[preprint,12pt]{elsarticle}
\journal{Journal of Sound and Vibration}
\begin{document}
\begin{frontmatter}
\title{}
\author{}
\affiliation{organization={},%Department and Organization
addressline={},
city={},
postcode={},
state={},
country={}}
\begin{abstract}
\end{abstract}
\begin{keyword}
\end{keyword}
\end{frontmatter}
\section{}
\label{}
See reference \cite{tichy1983active}.
\bibliographystyle{elsarticle-num}
\bibliography{myrefer}
\end{document}
这是更正的myrefer.bib
@article{tichy1983active,
title={Active noise cancellation in ducts},
author={Tichy, Jiri and Warnaka, Glenn E and Poole, Lynn A},
journal={The Journal of the Acoustical Society of America},
volume={74},
number={S1},
pages={S25--S25},
year={1983},
publisher={Acoustical Society of America},
doi={10.1121/1.2020873}
}
不相关:这是来自发布者方面的 bibtex 条目
@article{doi:10.1121/1.2020873,
author = {Tichy,Jiri and Warnaka,Glenn E. and Poole,Lynn A. },
title = {Active noise cancellation in ducts},
journal = {The Journal of the Acoustical Society of America},
volume = {74},
number = {S1},
pages = {S25-S25},
year = {1983},
doi = {10.1121/1.2020873},
URL = {https://doi.org/10.1121/1.2020873},
eprint = {https://doi.org/10.1121/1.2020873}
}