更改*一些*参考资料的颜色

更改*一些*参考资料的颜色

我在用

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

得出的结果为:

在此处输入图片描述

查看hyperref 手册了解可能的选项的详细信息。

相关内容