Latex 目录空间问题

Latex 目录空间问题

问题是目录空间从图中可以看出。如何为每个部分和子部分指定相同的空间并相应地更新目录。在此处输入图片描述

非常感谢您的建议。

答案1

托克洛夫特包可能是你的朋友。具体来说,使用它的宏

\cftsetindents{<header type>}{<start>}{<width>}

chap设置包含与标题类型(如、sectionsubsection等)相对应的数字的“块”的起始位置(从文本块的左边缘测量)和宽度。

以下可能是一个适合您的解决方案。

在此处输入图片描述

\documentclass{book}

\usepackage{tocloft}
\cftsetindents{chapter}{0em}{1.5em}
\cftsetindents{section}{1.5em}{3em}

\begin{document}
\tableofcontents
\setcounter{chapter}{18}   % just for this example
\chapter{A chapter with many sections}
\setcounter{section}{9} % just for this example
\section{Definition-Code Book}
\section{Feistel cipher\slash Network}
\section{Key exchange}
\section{Discrete algorithm}
\end{document}

相关内容