我目前正在使用 subcaption 包来设置带有子浮点的图形。我当前的代码如下:
\begin{figure}
\centering
\captionsetup{font=normalsize,justification=raggedright,singlelinecheck=false}
\begin{subfigure}[t]{0.48\textwidth}
\caption{}
\includegraphics[width=\textwidth]{Figures/Orientation_total_N1}
\label{orientation_N1}
\end{subfigure}
\hfill
\begin{subfigure}[t]{0.48\textwidth}
\caption{}
\includegraphics[width=\textwidth]{Figures/Orientation_total_N2}
\label{orientation_N2}
\end{subfigure}
\begin{subfigure}[t]{0.48\textwidth}
\caption{}
\includegraphics[width=\textwidth]{Figures/Orientation_total_N3}
\label{orientation_N3}
\end{subfigure}
\captionsetup{font=normalsize,justification=justified,singlelinecheck=false}
\caption{\textbf{Nothing} really interesting}
\label{speed_orientation}
\end{figure}
这样我的图的 (a)、(b) 和 (c) 就位于子图的左上角。但是,我想减少空子标题中的标记 (a)、(b) 和 (c) 以及图的顶部之间的垂直间距。
我该怎么做?我尝试使用:
\captionsetup{font=normalsize,justification=raggedright,singlelinecheck=false,skip = 30pt}
但什么都没变,不管我在“skip”后使用什么值。更一般地说,我如何才能更改 subcaption 包中的所有这些长度参数?
多谢 !