更改由 \htmladdnormallink 生成的链接的颜色

更改由 \htmladdnormallink 生成的链接的颜色

我尝试写一本书,我是 LaTeX 中一些函数的初学者。我已经查找过这个问题,甚至查看了 hyperref 手册,但我没有找到任何有关如何更改由该函数生成的链接颜色的信息\htmladdnormallink,因为当我指定时,它的默认颜色是粉红色colorlinks。我想要一种不同的颜色。有什么方法可以解决这个问题?


\documentclass[12pt,reqno]{book}

\usepackage[colorlinks,citecolor=black,linkcolor=black]{hyperref}

\begin{document}
\htmladdnormallink {example}{https://www.itisnotexistitisanexample.com}
\end{document}

在此处输入图片描述

答案1

\htmladdnormallink是 的包装器\href,它使用带有选项的颜色集urlcolor。如果需要更改颜色,则将其设置urlcolor=...为所需的值。

\documentclass[12pt]{book}

\usepackage[colorlinks,citecolor=black,linkcolor=black,urlcolor=blue]{hyperref}

\begin{document}
\htmladdnormallink {example}{https://www.itisnotexistitisanexample.com}
\end{document}

在此处输入图片描述

相关内容