自定义 classicthesis 的目录(颜色)

自定义 classicthesis 的目录(颜色)

我正在将classicthesis其用作论文的模板。问题是我想为目录中的章节设置不同的颜色。示例:

内容

1 简介(红色)

1.1 动机

1.2 任何事物

谢谢!希望你能帮助我。

答案1

由于classicthesis内部使用tocloft包中,你可以重新定义\cftchapfont\cftchappagefont添加想要的颜色;一个小例子:

\documentclass{scrbook}
\usepackage{xcolor}
\usepackage{classicthesis}

\renewcommand\cftchapfont{\normalfont\color{red}}
\renewcommand\cftchappagefont{\normalfont\color{red}}

\begin{document}

\tableofcontents
\chapter{Introduction}
\section{Test Section}
\subsection{Test Subsection}
\chapter{Another Chapter}
\section{Test Section}

\end{document}

生成的 ToC 的图像:

在此处输入图片描述

相关内容