答案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}
....