如果我包含subcaption
包,所有图形的标题都会居中。但我想让标题文本对齐。我该怎么办?
PS 我通过 和 插入图像\begin{figure}
并\includegraphics
通过 制作标题\caption
。
答案1
subcaption
用途caption
默认设置singlelinecheck
为true
(已打开)。如果标题适合一行,则此设置会将标题居中。
\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}