调整图表列表中项目的缩进

调整图表列表中项目的缩进

我想调整图表列表中项目的缩进。现在它看起来像这样:

在此处输入图片描述

我想将项目移到左侧以匹配标题“图表列表”的缩进

我用来生成此图列表的唯一代码是在我的 main.tex 文件中指定以下内容:\listoffigures

答案1

您可以使用tocloft

\documentclass{book}
\usepackage{graphicx} % For sample figures only
\usepackage{pgffor}   % For sample figures only
\usepackage{tocloft}
\cftsetindents{fig}{0pt}{2.3em}
\begin{document}
\listoffigures
\chapter{Test}
\foreach \i in {1,...,5} {%
    \begin{figure}
        \centering
        \includegraphics[width=5cm]{example-image}
        \caption{Caption 1 \i}
    \end{figure}%
}
\chapter{Test 2}
\foreach \i in {1,...,5} {%
    \begin{figure}
        \centering
        \includegraphics[width=5cm]{example-image}
        \caption{Caption 2 \i}
    \end{figure}%
}
\end{document}

在此处输入图片描述

相关内容