正如标题所示,我想给我的目录比如说红色和参考在我的文档中使用另一种颜色,比如说蓝色。
这是我的文档的 MWE:
\documentclass{report}
\usepackage{xcolor}
\usepackage{hyperref}
\usepackage{lipsum}
\title{test colors}
\author{Oddant}
\hypersetup{
colorlinks=true,
linktoc=all,
linkcolor=blue
}
\begin{document}
\tableofcontents
\chapter{foo}
\section{bar}
go to \ref{lipsum}
\chapter{oof}
\section{rab}
\label{lipsum}
\lipsum
\end{document}
如果你编译上面的代码,你会注意到目录与参考在里面酒吧部分。
我该如何着色目录例如黑色,无需安装任何额外的软件包,如托克洛夫特?
是否有任何参数需要放置超设置为了得到我想要的东西,我偷看了超链接但我来这里是为了寻找线索。
答案1
该命令\hypersetup
可以在文档主体内部使用。要设置颜色,您可以更改本地组内的行为或通过切换。
使用本地组:
\begingroup \hypersetup{linkcolor=red} \tableofcontents \endgroup
交换:
\hypersetup{linkcolor=red} \tableofcontents \hypersetup{linkcolor=blue}