答案1
您可以修改.bst
文件以添加 DOI 链接,如这个帖子。
- 下载
iopart-num.bst
并将其重命名iopart-num-mod.bst
。 - 添加以下函数到
iopart-num-mod.bst
:FUNCTION {doilink} { duplicate$ empty$ { pop$ "" } { doi empty$ { skip$ } { "\href{http://dx.doi.org/" doi * "}{" * swap$ * "}" * } if$ } if$ }
- 在您希望成为超链接的部分之后立即调用该函数。例如,在
article
紧接着的函数中format.vol.num.pages
:
这将从卷和页面创建超链接。... format.vol.num.pages doilink output ...
- 在 中添加
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}