如何将参考颜色更改为蓝色

如何将参考颜色更改为蓝色

我从下载了一个模板应用物理学杂志 - Scitation

您可以从此链接查看模板http://publishing.aip.org/authors/preparing-your-manuscript

问题是这个模板中的参考颜色不是蓝色,你能帮我把它改成蓝色吗?我试了好几次,但都没有成功。

以下是可能有助于解决问题的代码:

\listfiles
\documentclass[%
 reprint,%
%secnumarabic,%
 amssymb, amsmath,%
 aip,cha,%
%groupedaddress,%
%frontmatterverbose,
]{revtex4-1}
\usepackage{float}
\usepackage{docs}%
\usepackage{bm}%
\usepackage[colorlinks=true,linkcolor=blue]{hyperref}%
\usepackage{graphicx}
%\nofiles
\expandafter\ifx\csname package@font\endcsname\relax\else
 \expandafter\expandafter
 \expandafter\usepackage
 \expandafter\expandafter
 \expandafter{\csname package@font\endcsname}%
\fi
\hyphenation{title}
\pagestyle{empty}
\begin{document}

答案1

从问题的MWE来看:

\usepackage[colorlinks=true,linkcolor=blue]{hyperref}%

引用链接通过选项配置citecolor

citecolor=blue

或者如果所有类型的链接都应该是蓝色(自hyperref2011-02-05 v6.82a 起):

allcolors=blue

相关内容