使用\href

使用\href

我正在使用hyperref会自动url为我加载包的包并使用它们在文档中给出引用。

cite+url据我理解,的标准用法是\cite{cite_key} REFERENCE, \url{www.example.com}

这将显示 URL 文本为www.example.com。我想知道如何将显示的文本更改为类似于在 stackexchange 上用于提供链接的内容:不要点击虚假链接

这似乎是一个非常琐碎的问题,但我在网上找不到任何答案。真的很感激有人能提供一些帮助。

答案1

使用\href

在此处输入图片描述

\documentclass{article}
\usepackage{hyperref}
\hypersetup{colorlinks=true,linkcolor=blue,urlcolor=blue,citecolor=blue,anchorcolor=blue}
\begin{document}
Something to click \href{https://stackexchange.com/}{\texttt{visit\_stack\_exchange}}.
\end{document}

相关内容