无法让网址显示颜色

无法让网址显示颜色

我希望 URL 没有背景,但仍具有独特的颜色,以表明它们是可点击的。我定义

   \documentclass[line, margin]{res}
\usepackage[hidelinks]{hyperref}
\hypersetup{
linkcolor=red,
citecolor=green,
filecolor=magenta,
urlcolor=cyan
}
\begin{document}
\name{Myname}
\address{address...} 
\begin{resume}

\href{http://example.com}{Text}

\end{resume}
\end{document}

Res 文件可以在这里找到:关联

答案1

我不确定res.cls是什么...我猜这是你自己的非标准类文件(哦,刚刚在 OP 的帖子中看到了链接......)。

无论如何,您只需要colorlinks=true在超级设置中进行设置:

\hypersetup{
colorlinks=true,
linkcolor=red,
citecolor=green,
filecolor=magenta,
urlcolor=cyan
}

这样,您的 MWE 就会给出(在res用宏替换文档类report并忽略它之后\name......):

在此处输入图片描述

相关内容