将多个标题左对齐

将多个标题左对齐

我试图将标题对齐https://www.overleaf.com/14116991zfbttpsgjsym#/54641567/ 向左对齐。但我不能使用,\captionsetup{justification=raggedright,singlelinecheck=false} 因为我只希望几个标题向左对齐。有趣的是,如果你删除 begin document 之前的所有代码并将其替换为

    \documentclass{article}
    \usepackage{animate}
    \usepackage{graphicx}
    \usepackage{hyperref}

然后标题将自动对齐(居中)。无论如何,我只想让我的标题对齐/看起来整洁。

谢谢!

答案1

\captionsetup也可以在本地使用:

  • 大群体:

    \begingroup
       \captionsetup{justification=raggedright, singlelinecheck=false}
       ...
    \endgroup
    
  • 或者在浮动环境中:

    \begin{figure}
      \captionsetup{justification=raggedright, singlelinecheck=false}
      \caption{...}
    \end{figure}
    

相关内容