更改 elsarticle 中的引用颜色

更改 elsarticle 中的引用颜色

我喜欢在撰写论文时使用 elsarticle,并且我喜欢引用 Elsevier 出版期刊的颜色,如下所示。在此处输入图片描述

但是,我无法使用 latex 中的以下命令来更改 citecolor:

\usepackage[colorlinks=true,linkcolor=black, citecolor=<my_color>, urlcolor=blue]{hyperref}

另外我也不知道上图是什么颜色。

请有人指教如何做到这一点。

非常感谢。

答案1

您需要在开始文档时设置颜色,否则elsarticle选择自己的颜色。

\begin{filecontents*}{\jobname.bib}
@article{GBU,
  author={Eastwood, Clint and Van Cleef, Lee and Wallach, Eli},
  title={How to find a tomb with a treasure},
  journal={J. Treasure Searching},
  year=1966,
}
@article{SLIH,
  author={Curtis, Tony and Lemmon, Jack},
  title={How to play bass and saxophone},
  journal={J. Chicago Mafia},
  year=1959,
}
\end{filecontents*}

\documentclass[authoryear]{elsarticle}

\usepackage[x11names]{xcolor}
\usepackage[
  colorlinks,
]{hyperref}

\AtBeginDocument{\hypersetup{citecolor=DodgerBlue4}}

\begin{document}

\begin{frontmatter}
\title{A title}
\author{A. Uthor}
\end{frontmatter}

We cite \citet{GBU} \citep{SLIH}.

\bibliographystyle{plainnat}
\bibliography{\jobname}

\end{document}

在此处输入图片描述

相关内容