答案1
您需要设置\cftXdotsep
代表ter、tion 或tionX
的值:chap
sec
subsec
\documentclass{report}
\usepackage{tocloft}
% \@dotsep = 4.5 default
\renewcommand{\cftchapdotsep}{2}
\renewcommand{\cftsecdotsep}{2}
\renewcommand{\cftsubsecdotsep}{2}
% ...similar to
% \renewcommand{\cftdotsep}{2}
\begin{document}
\tableofcontents
\chapter{A chapter}
\section{A section}
\subsection{A subsection}
\end{document}
如果希望所有 ToC 条目之间使用相同的点分隔,只需设置\cftdotsep
。