图表列表中的多行缩进

图表列表中的多行缩进

下面的图片取自 MS Word,显示了示例论文中的图表列表。 在此处输入图片描述

如上图所示,如果标题有多行,则标题与“图”字对齐。还请注意,它们在页面的右端结束,并与罗马数字和阿拉伯数字对齐。

我曾见过许多用乳胶构建的不同的图形列表定制;但即使在互联网上进行详尽的搜索也从未找到过如此具体的配置。

是否有以前的主题或类似的例子来提供这样的案例?

此致

答案1

你可以用这个包来实现titletoc。例如,

\documentclass{article}
\usepackage{titletoc}
\contentsmargin{0mm}
\titlecontents{figure}[0mm]%
    {\makebox{Figure\enspace}}%
    {\makebox{\thecontentslabel.\enspace}}%
    {\makebox{.~}}%
    {\enspace\dotfill\enspace\thecontentspage\vspace{2mm}}
\begin{document}
\listoffigures
\begin{figure}
\caption{Some figure.}
\end{figure}
\begin{figure}
\caption{Some other figure, but with really really long caption that goes on more than only one line.}
\end{figure}
\begin{figure}
\caption{Again another figure, just to have another example to make sure everything is as it should be.}
\end{figure}
\end{document}

如果您需要更多示例或更多详细信息,请参阅文档

相关内容