如何删除特定图像与其标题之间的空格

如何删除特定图像与其标题之间的空格

在这篇文章中(如何减少图像和其标题之间的空间?) 对如何减少图形和标题之间的空间有很好的解释。

问题是它适用于文档中的每个图形。我如何更改特定图像(仅一个)与其标题之间的间距?

谢谢。

答案1

您可以使用caption包及其skip内部的键\captionsetup具有局部效果(使用所需的长度而不是0pt我为示例选择的长度):

\documentclass{article}
\usepackage{graphicx}
\usepackage{caption}

\begin{document}

\begin{figure}
\centering
\captionsetup{skip=0pt}
\includegraphics[width=6cm]{example-image-a}
\caption{A test caption}
\end{figure}

\begin{figure}
\centering
\includegraphics[width=6cm]{example-image-b}
\caption{A test caption}
\end{figure}

\end{document}

在此处输入图片描述

相关内容