目录中的换行符较早

目录中的换行符较早

有没有选项tocloft可以减少目录中的最大行长?我希望长章节标题能早点换行,以增加页码前的空白。

\documentclass[12pt]{article}
\usepackage{tocloft}
\begin{document}
\tableofcontents
\section{long section title that in the TOC wraps to the next line at a point too far}
\end{document}

答案1

ToC 条目的中断取决于r光线margtocloft允许您使用以下方法更改此设置(从默认值2.55em\cftsetrmarg

在此处输入图片描述

\documentclass[12pt]{article}
\usepackage{tocloft}
\cftsetrmarg{7em}% Default is 2.55em
\begin{document}
\tableofcontents
\section{long section title that in the TOC wraps to the next line at a point too far}
\end{document}

相关内容