每个人:
我遇到了一个问题。以下是我格式化目录的方式:
\usepackage{tocloft}
\tocloftpagestyle{empty}
\renewcommand{\cftdot}{…}
\renewcommand{\cftdotsep}{0}
\renewcommand\cftsecleader{\cftdotfill{\cftdotsep}}
其效果如下:
我的问题是如何分别格式化章节页码和子章节页码的前导点。我想要为我的子章节页码设置不同的前导行。我不知道如何单独设置。提前致谢。
答案1
也许这就是你要问的:
\documentclass{article}
\usepackage{blindtext}
\usepackage{tocloft}
\renewcommand{\cftsecdotsep}{7}
\renewcommand\cftsecleader{\bfseries\large\cftdotfill{\cftsecdotsep}}
\renewcommand{\cftsubsecdotsep}{4}
\renewcommand\cftsubsecleader{\normalsize\cftdotfill{\cftsubsecdotsep}}
\renewcommand{\cftsubsubsecdotsep}{1}
\renewcommand\cftsubsubsecleader{\small\cftdotfill{\cftsubsubsecdotsep}}
\begin{document}
\tableofcontents
\Blinddocument
\end{document}