更改 \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}

在此輸入影像描述

相關內容