标题与第一个单词左对齐

标题与第一个单词左对齐

对于一篇科学文章,我需要以这样的方式格式化图表的标题:当标题长度超过一行时,第二行(和第三行等)与标题的第一个单词对齐(不是图 1:,而是实际的第一个单词)。

我该如何让它工作?

答案1

您可以简单地使用caption带有该format=hang选项的包。

图片标题

\documentclass{article}
\usepackage[format=hang]{caption}

\begin{document}
    \begin{figure}

    \caption{This tends to be a very long figure caption which is really superfluous, but of course breaks the line.}
    \end{figure}
\end{document}

相关内容