答案1
使用tocloft
包装及其\cftsecnumwidth
长度,容纳所用的宽度sec(tion)num(bers)
。
最好用其他值增加当前值,而不是直接使用\setlength{\cftsecnumwidth}{...}
。(不过,这里应用的值20pt
纯粹是猜测。)
注意:明确使用\setcounter
仅仅是为了演示更大的部分编号。
数字左对齐...
\documentclass{article}
\usepackage{tocloft}
\addtolength{\cftsecnumwidth}{20pt}
\begin{document}
\tableofcontents
\clearpage
\section{One}
\section{Two}
\section{Three}
\section{Four}
\setcounter{section}{100}
\section{One}
\section{Two}
\section{Three}
\section{Four}
\end{document}