如何调整整个报告中仅几页的边距和文本宽度?

如何调整整个报告中仅几页的边距和文本宽度?

我想在长报告的单独部分局部调整边距和文本宽度。“图片列表”部分现在看起来不太好,因为图片编号和文本一起浮动,见附图!

我尝试了几种方法并且搜索了很长时间都没有成功。

有人知道我该如何解决这个问题吗?

提前非常感谢您!

诚挚问候,古斯塔夫在此处输入图片描述

答案1

分配给图形编号的空间可以从默认值2.3embookreportarticle类)增加。

A

    \documentclass{report}

%**************************************** added <<<<<<<<<<<<<<<<<<
\makeatletter
\renewcommand*\l@figure{\@dottedtocline{1}{1.5em}{3em}} % default \@dottedtocline{1}{1.5em}{2.3em}
\makeatother
%****************************************

\begin{document}
    
    \listoffigures
    
    \appendix
    
    \chapter{Figures}
    \setcounter{figure}{174}% only for this example
    \begin{figure}
         figure 175
        \caption{A figure}
    \end{figure}
    
    
    \begin{figure}
     figure 176
        \caption{Another figure}
    \end{figure}

    \begin{figure}      
    figure 177
    \caption{And another}
\end{figure}
    
\end{document}

选项tocloft软件包提供了许多命令,可根据具体要求配置 ToC、Lof 和 LoT。在这种情况下,这足够了

\usepackage{tocloft}
\setlength{\cftfignumwidth}{3.0em}

相关内容