答案1
您可能需要研究一下titletoc
,它允许\colorbox
在不进行黑客攻击的情况下使用。
如果你真的想继续使用,tocloft
你可以使用一个 hack:在中捕获标题\hbox
,然后\unhbox
在颜色框中:
\documentclass{book}
\usepackage{tocloft,xcolor}
\newcommand\cftafterparttitle{%
\setlength\fboxsep{1pt}\colorbox{black}{\unhbox0}\egroup%
}
\expandafter\renewcommand
\expandafter\cftpartfont
\expandafter{\cftpartfont
\color{white}%
\setbox0\hbox\bgroup
\aftergroup\cftafterparttitle
}
\begin{document}
\tableofcontents
\part{Teil 1}
\chapter{Kapitel 1}
\section{Abschnitt 1}
\part{Teil 2}
\chapter{Kapitel 2}
\section{Abschnitt 2}
\end{document}