IoP 期刊参考书目

IoP 期刊参考书目

我正在使用 bib 文件将单栏文章提交给 IoP。

在我的 tex 文件末尾

\documentclass[12pt]{iopart}

我有

\section*{References}
\bibliographystyle{iopart-num}
\bibliography{bib_file}

但是,我无法显示以下项目

在此处输入图片描述

相反,所有内容都是黑色的。我如何确保参考文献会显示 doi 链接(浅蓝色)?

此外,参考文献之间以逗号分隔:[12,13,14,15],而不是显示 [12-15]。

提前感谢您的回复!

答案1

您可以修改.bst文件以添加 DOI 链接,如这个帖子

  1. 下载iopart-num.bst并将其重命名iopart-num-mod.bst
  2. 添加以下函数到iopart-num-mod.bst
    FUNCTION {doilink}
    { duplicate$ empty$
    { pop$ "" }
    { doi empty$
        { skip$ }
        { "\href{http://dx.doi.org/" doi * "}{" * swap$ * "}" * }
      if$
    }
    if$
    }
    
  3. 在您希望成为超链接的部分之后立即调用该函数。例如,在article紧接着的函数中format.vol.num.pages
    ...
    format.vol.num.pages doilink output
    ...
    
    这将从卷和页面创建超链接。
  4. 在 中添加doi字段ENTRY

cite以下是与和包结合使用的 MWE 修改后的参考书目样式hyperref

\documentclass[12pt]{article}

\usepackage{filecontents}
\begin{filecontents}{bib_file.bib}
@article{Rueda_2014,
    author  = {Rueda, A and others},
    title   = {Title},
    journal = {Optica},
    volume  = {3},
    pages   = {597},
    year    = {2014},
    doi     = {123456/798}
}
@article{Rueda_2015,
    author  = {Rueda, A and others},
    title   = {Title},
    journal = {Optica},
    volume  = {3},
    pages   = {597},
    year    = {2015},
    doi     = {123456/798}
}
@article{Rueda_2016,
    author  = {Rueda, A and others},
    title   = {Title},
    journal = {Optica},
    volume  = {3},
    pages   = {597},
    year    = {2016},
    doi     = {123456/798}
}
\end{filecontents}

\usepackage{cite}
\usepackage[colorlinks, citecolor = blue, urlcolor = blue]{hyperref}
\bibliographystyle{iopart-num-mod}
\begin{document}
\cite{Rueda_2014, Rueda_2015, Rueda_2016}
\bibliography{bib_file}
\end{document}

裁判

相关内容