创建括号内、彩色、超链接的文本

创建括号内、彩色、超链接的文本

如何使用方括号括起超链接\href

我想要类似 [Link] 的东西,带有方括号,黑色,“Link”为蓝色(我的默认超链接颜色)。

答案1

这样,方括号也是链接的一部分,但采用正文的颜色(默认为黑色):

\documentclass{article}
\usepackage{xcolor}
\usepackage[hidelinks]{hyperref}
\newcommand\mylink[2]{\href{#1}{[{\color{blue}#2}]}}
\begin{document}
This is a
\mylink{http://www.example.com}{Example} 
web.  
\end{document}

答案2

\documentclass{article} 
\usepackage[colorlinks=true, urlcolor=blue]{hyperref} 
\let\oldhref\href
\renewcommand\href[2]{[\oldhref{#1}{#2}]}
\begin{document} 
    Here is the \href{https://tex.stackexchange.com/}{Tex Site}. More text ...
\end{document}

输出

相关内容