如何在参考书目中创建超链接而不显示 URL

如何在参考书目中创建超链接而不显示 URL

这是我的 MWE:

\documentclass{article}
\usepackage{lipsum}

\usepackage{natbib}
\usepackage{bibentry}

\usepackage{color}
\usepackage{hyperref} % For hyperlinks in the PDF
\hypersetup{colorlinks=true,allcolors=blue}

\begin{document}

\thispagestyle{plain}

\section{Introduction}

Citation~\cite{Gubbay1990} 

\bibliographystyle{unsrt}
\bibliography{bib.bib}

\end{document}

我想将整个参考文献的作者、标题、期刊等(除编号外,例如 [1])设为超链接,在 .bib 文件中指定为 url = {},但不显示 URL。这意味着您可以单击参考文献的任意位置,它会将您带到您在 .bib 文件中写入的 URL。如果可以的话,在我的示例中,整个参考文献将显示为蓝色。

相关内容