数字和文本之间的数字空间列表

数字和文本之间的数字空间列表

我需要在图表列表中的数字和文本之间留出更多空间。我该如何调整?我重新命令获取 A.Abb。1,因为该图位于附录中。在我的图表列表中,它与 A.Abb 不匹配,所以我需要在那里留出更多空间。

   \renewcommand{\thefigure}{A.Abb.\arabic{figure}}
\setcounter{figure}{0}
\begin{figure}[h]
    \includegraphics[width=1\textwidth]{irf_sp_crix_tag}
    \caption{Impuls-Antwort-Folge: CRIX S\&P500 Tag}\label{IRF_SP_CRIX_TAG}
\end{figure}

\begin{figure}[h]
    \includegraphics[width=1\textwidth]{irf_crix_eur_usd}
    \caption{Impuls-Antwort-Folge: CRIX EUR/USD Woche}\label{IRF_eur_usd_crix_woche}
\end{figure}

在此处输入图片描述

答案1

使用tocloft包(尽管您没有说正在使用哪个类,但该类可能已经提供了这些函数,例如memoir.cls)。

在你的序言中写到:

\usepackage{tocloft}
\setlength{\cftfignumwidth}{4em}% change 4em to suit

这将为 LoF 中的标题编号提供 4em 的宽度。

请参阅手册(> texdoc tocloft)以了解更多信息。

相关内容