使用环绕图时标题发生变化

使用环绕图时标题发生变化

我正在写一本回忆录,里面有一些数字。正常的数字是这样的: 没有使用包装图

使用以下代码

\begin{figure}[H]
\begin{center}
\includegraphics[width=0.65\textwidth]{...}\hspace{0.25cm}
\includegraphics[width=0.30\textwidth]{...}
\end{center}
\caption{...}\label{...}
\end{figure}

但是当我wrapfigures在这里使用时: 带有包装图

使用以下代码:

\begin{wrapfigure}[13]{r}{0.45\textwidth}
\centering
\vspace{-1cm}
\begin{center}
\includegraphics[width=0.45\textwidth]{...}
\end{center}
\vspace{-1cm}
\caption{...}\label{...}
\end{wrapfigure}

标题发生了变化。我的意思是,对于普通图形,标题中的行与行之间没有空格。但是对于环绕图,行与行之间的空格与文本中的空格一样多,并且环绕图的标题的文本大小更大。哪里出了问题?我希望我的标题像第一张图片一样紧凑。

答案1

\linespread{1}\selectfont在标题前手动使用该命令,并在标题\linespread{1.4}\selectfont后再次使用该命令\end{wrapfigure}

相关内容