目录和颜色

目录和颜色

我想知道是否可以将目录变成黑色,就像图中所示的那样: 在此处输入图片描述

并且在引用这些部分时使其显示为蓝色:

在此处输入图片描述

这是我当前的设置:

\hypersetup{
    colorlinks=true,
    linkcolor=black,
    filecolor=blue,      
    urlcolor=blue,
    citecolor=blue,
    %pdfpagemode=FullScreen,
}

答案1

像这样的事情会做你想做的事:

\documentclass{article}

\usepackage{hyperref}
\hypersetup{
    colorlinks=true,
    allcolors=blue
}

\begin{document}

{\hypersetup{hidelinks}
\tableofcontents
}

\section{Section heading}
\label{sec}

Filler text.

\section{Another section heading}
\label{anothersec}

Filler text. §\ref{sec}. Filler text. §\ref{anothersec}.

\end{document}

输出

相关内容