[Tex/LaTex] Make all \href text bold

boldformattinghyperref

For url's, I know the bare URL can be made bold, as illustrated in this question: How to make URL bold?.

How can I do the same thing, for an entire document, for the text field of \href?

Best Answer

Redefine \href to always use \href[.]{..}{\bfseries ...}:

enter image description here

\documentclass{article}

\usepackage{hyperref}
\usepackage{letltxmacro,xparse}

\LetLtxMacro\oldhref\href
\RenewDocumentCommand{\href}{o m m}{%
  \IfValueTF{#1}
    {\oldhref[#1]{#2}{\bfseries #3}}
    {\oldhref{#2}{\bfseries #3}}%
}

\begin{document}

\href{http://tex.stackexchange.com}{\TeX.SE}

\end{document}