更改*某些*引用的顏色

更改*某些*引用的顏色

我在用

\usepackage[colorlinks=true,linkcolor=black,linktoc=page]{hyperref}

引文顯示為綠色,而目錄、圖形和方程式中的頁碼顯示為藍色。據我了解,這些是標準顏色。

我如何只是保留引文的綠色,但將其他所有內容更改為非標準顏色?比如,深藍色。

答案1

您可以使用\hypersetup命令(或作為可選參數\usepackage[...]{hyperref})設定各種顏色。

根據評論,我擴展了 MWE:

\documentclass{article}
\usepackage[svgnames]{xcolor}
\usepackage{hyperref}
\hypersetup{
  colorlinks = true,
  linkcolor =LightSkyBlue,
  anchorcolor = red,
  citecolor = blue,
  urlcolor = blue
}
\begin{document}
  \begin{equation}\label{One}1+1=2\end{equation}
  Isn't \ref{One} a nice equation?
\end{document}

這會產生:

在此輸入影像描述

請參閱超參考手冊有關可能選項的詳細資訊。

相關內容