答案1
如果book.cls
使用 ,则更改可以非常轻松地完成tocloft
,方法是向长度变量添加一些额外的长度值,从而增加章节编号的\cftchapnumwidth
数字框的空间。如果使用 ,则有或。ToC
article
\cftsecnumwidth
\cftpartnumwidth
的值10pt
太随意了,请修改为合适的值!
\documentclass{book}
\usepackage{tocloft}
\renewcommand{\thechapter}{\Roman{chapter}}
\addtolength{\cftchapnumwidth}{10pt}
\begin{document}
\tableofcontents
\setcounter{chapter}{6}
\chapter{Mrs. Premise}
\chapter{Mrs. Conclusion}
\end{document}