答案1
每层(或类型)内容行的节号宽度(通常称为“numwidth”)是固定的。对于节,它是2.3em
在book
和report
标准类中。
更改部分“numwidth”的最简单方法可能是使用tocloft
包:
\documentclass{report}
\usepackage{tocloft}
\renewcommand{\thesection}{WT~\arabic{chapter}-\arabic{section}}
\renewcommand\cftsecnumwidth{4em}
\begin{document}
\tableofcontents
\chapter{title}
\section{title}
\section{title}
\end{document}