使用 CrossRef 等特定文本链接替换 ​​DOI 链接

使用 CrossRef 等特定文本链接替换 ​​DOI 链接

我想hyperref用任意单词或文本链接替换软件包制作的 DOI 链接,因为参考文献末尾的 DOI 链接非常丑陋且冗长。有人能帮我吗?

在此处输入图片描述

我更喜欢这个: 在此处输入图片描述

答案1

您可以使用以下代码:

\DeclareFieldFormat*{doi}{[\href{https://doi.org/#1}{CrossRef}]}

梅威瑟:

\documentclass{article}

\begin{filecontents*}[overwrite]{references.bib}
@article{Li,
author = {Z. Li and M.J. Yang and J.S. Park and S.H. Wei and J.J. Berry and K. Zhu},
title = {Stabilizing perovskite structures by tuning tolerance factor: formation of formamidinium and cesium lead iodide solid-state alloys},
journaltitle = {Chem.\ Mater.},
volume = {28},
number = {1},
year = {2016},
pages = {284-292},
doi = {10.1021/acs.chemmater.5b04107},
}
\end{filecontents*}

\usepackage{biblatex}

\DeclareFieldFormat*{doi}{[\href{https://doi.org/#1}{CrossRef}]}

\addbibresource{references.bib}

\usepackage[colorlinks]{hyperref}

\begin{document}

\nocite{*}
\printbibliography

\end{document}

在此处输入图片描述

相关内容