如何减少 ToC 中点之间的空间?

如何减少 ToC 中点之间的空间?

我想改变 ToC 中点之间的空间以便传递这个(示例)

不需要的目录

对此

想要 toc 风格

我已阅读该tocloft软件包,但我不明白如何操作。

感谢您的帮助。

答案1

您需要设置\cftXdotsep代表ter、tion 或tionX的值:chapsecsubsec

在此处输入图片描述

\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

相关内容