我正在将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 的图像: