我如何重新定义引线tocloft
以使其具有最小长度?背景是我总是希望目录中的引线至少有两个点,必要时强制在标题中换行。下面的例子有点愚蠢。多列目录中更常出现此问题。
\documentclass{book}
\usepackage{tocloft}
\cftsetpnumwidth{1em}
\renewcommand\cftdotsep{2}
\begin{document}
\tableofcontents
\chapter{This is a chapter}
\section{Medium length title}
\section{Very, very long title of a section bbb bbb bb bb bb bb b b b b b b b}
\section{Medium length title}
\end{document}
答案1
找到答案在这篇文章中。
\renewcommand\cftsecleader{\leaders\hbox to1em{\hss.\hss}\hskip 2.9mm plus1fill}
更改2.9mm
为所需的最小长度。