有没有选项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
光线marg
。tocloft
允许您使用以下方法更改此设置(从默认值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}