hyperref + cleveref:将交叉引用颜色变为蓝色

hyperref + cleveref:将交叉引用颜色变为蓝色

我目前用于cleveref交叉引用。我想知道如何将交叉引用变成蓝色?示例如下:

\documentclass[12pt]{article}

%% Language and font encodings
\usepackage[english]{babel}

\usepackage[colorlinks=true, allcolors=blue,linkcolor=Blue, citecolor=blue]{hyperref}
\usepackage[capitalise]{cleveref}

\crefname{section}{\textbf{Section}}{\textbf{Sections}}

\begin{document}
    \section{A theorem}\label{section:1}
    \cref{section:1} is useful to prove theorem b. 
\end{document}

答案1

  • 抱歉,我正要离开公寓。
  • 我只是提供了一些代码(没有时间提供更多)。
  • 这个结果是你想要的吗?

\documentclass{article}

\usepackage{hyperref}
\hypersetup{
    colorlinks = true,
    linkcolor = blue
    }
    
\usepackage[
        noabbrev,
        capitalise,
        nameinlink,
    ]
    {cleveref}

\begin{document}
    \section{A theorem}\label{section:1}
    \cref{section:1} is useful to prove theorem b. 
\end{document}

在此处输入图片描述

相关内容