我正在写一篇文章,其中需要写一张图片及其标题。我发现标题后的空间似乎比正常情况下多。
\begin{figure}[!ht]
\centering
\includegraphics[width=0.7\linewidth]{image1.jpg}
\caption{\textcolor{gray}{\footnotesize \textit{ImageCaption}}}
\end{figure}
This is first text after caption.
我怎样才能减少标题和文本之间的间距?
答案1
一种快捷的方法是使用\vspace{}
负长度作为输入。但这不是正确的方法,不建议使用。
如果不使用,vspace
输出将如下所示:
这是一个 MWE,以vspace
负长度作为输入,然后是输出。
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{caption}
\usepackage{xcolor}
\begin{document}
\begin{figure}[!ht]
\centering
\includegraphics[width=0.5\textwidth]{image}
\vspace{-1em}
\caption{\textcolor{gray}{\footnotesize \textit{ImageCaption}}}
\vspace{-1.5em}
\end{figure}
This is first text after caption.
\end{document}
vspace
请注意图形之后和标题之后的使用是如何缩小空间的。