文本颜色中的超链接

文本颜色中的超链接

我已经使用过hyperref(与xcolor)和

\hypersetup{
  linkcolor=black,
  filecolor=black,
  urlcolor=black,
  citecolor=black
}

已经有一段时间了。但是,在彩色文本中,这看起来有点傻。有没有(简单的)方法可以完全改变链接颜色?我也不想要这些(大部分是红色的)框,链接应该看起来像普通文本。

答案1

.也许您可以使用包定义的当前颜色xcolor

\documentclass{article}
\usepackage{xcolor}
\usepackage{hyperref}
\hypersetup{colorlinks,linkcolor=.,filecolor=.,urlcolor=.,citecolor=.}

\begin{document}
\section{Section}\label{test}
{\color{blue}See \ref{test}},
{\color{orange}see \ref{test}}, 
see \ref{test} 
\end{document}

在此处输入图片描述

答案2

如果你坚持保留 texlive 2009,请安装一个新的 hyperref,例如从这里:http://www.ctan.org/pkg/hyperref

您可以将其安装到您的 ~/texmf 中,如果不行,只需再次将其删除即可。请注意,如果您的 ~/texmf 包含文件ls-R,则必须更新它,例如texhash ~/texmf

相关内容