参考文献中的 DOI

参考文献中的 DOI

我正在给 IEEE EDL 写信。他们要求我在参考文献中添加 DOI。我使用的是 IEEEtran 样式。.bib 文件包含每个参考文献的 DOI。但它不会显示在输出中。如何在输出中显示 DOI?

文档类 IEEEtran.cls

BibTex 条目示例

@ARTICLE{r6, 
author={A. C. Seabaugh and Q. Zhang}, 
journal={Proceedings of the IEEE}, 
title={Low-Voltage Tunnel Transistors for Beyond CMOS Logic}, 
year={2010}, 
volume={98}, 
number={12}, 
pages={2095-2110}, 
keywords={CMOS logic circuits;MOSFET;}, 
doi={10.1109/JPROC.2010.2070470}, 
ISSN={0018-9219}, 
month={Dec},}

答案1

您需要 (a) 将字段的标签更改doinote并 (b) 将 doi 字符串包含在\url{...}指令中。(IEEEtran文档类会自动加载url包。)

完整的 MWE:

在此处输入图片描述

\RequirePackage{filecontents}
\begin{filecontents}{mybib.bib}
@ARTICLE{r6,
author  = {A. C. Seabaugh and Q. Zhang},
journal = {Proceedings of the IEEE},
title   = {Low-Voltage Tunnel Transistors for Beyond {CMOS} Logic},
year    = {2010},
volume  = {98},
number  = {12},
pages   = {2095-2110},
keywords= {CMOS logic circuits;MOSFET;},
note    = {doi: \url{10.1109/JPROC.2010.2070470}},
ISSN    = {0018-9219},
month   = dec,
}
\end{filecontents}

\documentclass{IEEEtran}
\bibliographystyle{IEEEtran}
\usepackage[colorlinks,urlcolor=blue]{hyperref} % optional

\begin{document}
\nocite{*}
\bibliography{mybib}
\end{document} 

顺便说一句,您应该将月份字段从 改为month={Dec}(month=dec没有花括号,小写“d”)。您还应该将单词“CMOS”括在花括号中,以防止 BibTeX 将其小写。

答案2

请在您的 .tex 文件中包含以下包:

    \usepackage[colorlinks,urlcolor=blue]{hyperref}
    \usepackage{url}

使用以下代码替换 .bib 文件中的引用:

    @ARTICLE{r6,
    author={A. C. Seabaugh and Q. Zhang},
    journal={Proceedings of the IEEE},
    title={Low-Voltage Tunnel Transistors for Beyond CMOS Logic},
    year={2010},
    volume={98},
    number={12},
    pages={2095-2110},
    keywords={CMOS logic circuits;MOSFET;},
    note = {doi: \href{https://doi.org/10.1109/JPROC.2010.2070470} 
    {10.1109/JPROC.2010.2070470}},
    ISSN={0018-9219},
    month={Dec},
    }

相关内容