子标题包使所有标题居中

子标题包使所有标题居中

如果我包含subcaption包,所有图形的标题都会居中。但我想让标题文本对齐。我该怎么办?

PS 我通过 和 插入图像\begin{figure}\includegraphics通过 制作标题\caption

答案1

subcaption用途caption默认设置singlelinechecktrue(已打开)。如果标题适合一行,则此设置会将标题居中。

在此处输入图片描述

\documentclass{article}

\usepackage{showframe}% Just for this example
\usepackage{subcaption}

\begin{document}

\begin{figure}
  \caption{Lorem ipsum dolor sit amet\ldots}
\end{figure}

\captionsetup{
  singlelinecheck = false
}

\begin{figure}
  \caption{Lorem ipsum dolor sit amet\ldots}
\end{figure}

\end{document}

相关内容