如何修改图形和标题之间的垂直空间?

如何修改图形和标题之间的垂直空间?
\documentclass{article}
\usepackage[draft]{graphicx}
\begin{document}
\begin{figure}
\centering
\setlength\fboxsep{124pt}
\setlength\fboxrule{1pt}
\fbox{\includegraphics{dummy}}
\caption{Dummy caption}
\end{figure}
\end{document}

如何增加图形和标题之间的垂直空间?

答案1

修改长度\abovecaptionskip\belowcaptionskip(在文档序言中)以满足您的需要:

\setlength{\abovecaptionskip}{15pt plus 3pt minus 2pt} % Chosen fairly arbitrarily

默认值为10pt0pt。( 和plus允许minus空间根据需要拉伸或收缩。数字指定收缩的量。)

答案2

\vspace*{-10mm}放在命令之前\caption就可以了。只需选择最适合您的数字即可。

答案3

您可以使用caption包裹为了这:

\usepackage[skip=2pt]{caption} % example skip set to 2pt

这将影响所有数据。

文档说:

标题和图形或表格内容之间的垂直间距由选项 skip=amount 控制。标准 LATEX 文档类 article、report 和 book 将其预设为 skip=10pt,但其他文档类可能使用不同的数量。

答案4

只需\vspace*{-3mm}选择

\begin{figure}[htbp]
    \centering
    \includegraphics[width=0.74\textwidth]{figs/Subplt.pdf}
    \vspace*{-3mm}
    \caption{Inverter-level and macro-level MAPE bootstrap distributions.}
    \label{Fig:Subplt_fig}
\end{figure}

相关内容