对我的人物列表的外观有疑问

对我的人物列表的外观有疑问

我正在处理一份大文件,因此我有很多图表。图表列表很完美,直到其中一章的图表超过了 10 个。然后它开始看起来像这样。

劳伦斯

有没有什么办法可以修复外观?我是 Latex 的新手,所以我不知道该怎么做。谢谢

答案1

我建议您在序言中输入以下内容:

\makeatletter
\renewcommand*\l@figure{\@dottedtocline{1}{1.5em}{3.6em}}
\makeatother

如果这个答案不清楚,我会给你一个示例 LaTeX 程序来遵循它。

\documentclass{book}
\makeatletter
\renewcommand*\l@figure{\@dottedtocline{1}{1.5em}{3.6em}}
\makeatother

\begin{document}

\tableofcontents

\chapter{Introduction}
\section{Control Systems}
\subsection{Linear Control Systems}
\subsection{Nonlinear Control Systems}
\end{document}

当然,您需要插入图形等。尝试使用序言中给出的命令来处理您的文档。

答案2

tocloft包适用于此以及 TOC、LOF 和 LOT 的许多其他方面。

%\documentclass...
\usepackage{tocloft}
\addtolength{\cftfignumwidth}{2em} % increase space for figure caption numbers by 2em
%\addtolength{\cfttabnumwidth}{2em} % and for table captions if necessary
 ....
\begin{document}
....

相关内容