建立括號括起來的彩色超連結文本

建立括號括起來的彩色超連結文本

如何使用方括號將超連結括起來\href

我想要類似帶有方括號的黑色“鏈接”和藍色的“鏈接”(我的預設超連結顏色)。

答案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}

輸出

相關內容