我正在写一篇 IEEE 会议论文。我使用以下命令调整了单个数字周围的空白,没有任何问题:
\setlength\belowcaptionskip{-15pt}
但是,当我尝试在具有两个子图的图中使用相同功能时,最终结果并不像我预期的那样。
我使用的代码:
\begin{figure*}[!htbp]
\setlength\belowcaptionskip{-15pt}
\centering
\begin{subfigure}{1\linewidth}
\includegraphics[width=\linewidth]{111.png}
\caption{LV distribution}
\label{fig2a}
\end{subfigure}
\begin{subfigure}{1\linewidth}
\includegraphics[width=\linewidth]{111.png}
\caption{MV distribution}
\label{fig2b}
\end{subfigure}
\caption{Location of DVR.}
\end{figure*}
\end{document}
我得到的输出:
我尝试调整标题和以下文本之间的空白。但代码也调整了子图之间的间距。子标题 a 丢失,子标题 b 与图的主标题重叠。
有人能提供建议吗?提前谢谢。