我尝试将图表/表格列表中的文本与页码之间的间距拉长。从第 100 页开始,间距太短。我该如何调整?
这是一个简单的例子:
\documentclass[12pt,twoside,reqno]{amsbook}
\usepackage[latin1]{inputenc} % Kodierung
\usepackage[ngerman, english]{babel} % Sprache
\usepackage[T1]{fontenc}
\usepackage{blindtext}
%list of figures Abstand Zahl und Text
\makeatletter
\def\l@figure{\@tocline{0}{3pt plus2pt}{0pt}{3pc}{}}
\makeatother
\makeatletter
%\def\l@table{\@tocline{0}{Abstnd_zur_nächsten_zeilept plus2pt}{Abstanz_zur_linken_Seitept}{Abstand_fig_nr_text}{Text_fig_nr_text}}
\def\l@table{\@tocline{0}{3pt plus2pt}{0pt}{3pc}{}}
\makeatother
\begin{document}
\Blinddocument
\Blinddocument
\Blinddocument
\Blinddocument
\Blinddocument
\Blinddocument
\Blinddocument
\Blinddocument
\begin{table}[p]
\begin{tabular}{ l c r }
1 & 2 & 3 \\
4 & 5 & 6 \\
7 & 8 & 9 \\
\end{tabular}
\caption{This is a table with a very very very very very long caption.}
\end{table}
\listoftables
\end{document}