在TOC中的节号后添加空格

时间:2015-10-13 03:12:39

标签: latex

从下面的示例中可以看出,我的LaTeX书籍在两位数的部分编号和自动生成的目录中的部分标题之间没有留出足够的空间。我似乎记得有一种方法可以为所有条目添加额外的空间,但我无法在线找到它。

Sample table of contents entries

[编辑]在回复下面的评论时,这是一个最低限度的工作示例:

\documentclass{book}
\begin{document}
\tableofcontents

\chapter{Chapter}
\chapter{Chapter}

\setcounter{chapter}{10}
\chapter{Chapter}
\section{Section}
\section{Section}

\setcounter{section}{10}
\section{Section}
\section{Section}
\subsection{Subsection}
\subsection{Subsection}

\setcounter{subsection}{10}
\subsection{Subsection}
\subsection{Subsection}

\chapter{Chapter}

\end{document}

1 个答案:

答案 0 :(得分:2)

来自https://tex.stackexchange.com/questions/13690/extra-space-for-numbered-titles-in-table-of-contents

单独调整标题边距:

\makeatletter
\renewcommand{\l@section}{\@dottedtocline{1}{1.5em}{2.6em}}
\renewcommand{\l@subsection}{\@dottedtocline{2}{4.0em}{3.6em}}
\renewcommand{\l@subsubsection}{\@dottedtocline{3}{7.4em}{4.5em}}
\makeatother