插入环绕图后文本之间的间距很大

插入环绕图后文本之间的间距很大

我目前在使用 latex 时遇到了一个问题,因为当我插入一个环绕图时,我的一些文本会被延伸。例如,它变成这样:

在此处输入图片描述

我该如何解决这个问题?谢谢!

编辑:

\[ x_{new} =  h_{\theta1}(x_j - x_i, \|x_j - x_i\|_2)) \tag{6} \label{equ:6}\]
where $x_j - x_i$ and $\|x_j - x_i\|_2$ xxx xxxxx xxxxxs and the xxxxx xxxxxx xxxxxxx and $h_{\theta1}$, $h_{\theta2}$ and $h_{\theta3}$ are mxxxxx\cite{mish} xxxxxxxx. xxxxxx constructing xxxxxx xxxxx, each local xxxxxt and xxxxx feature are fed into xxxxx xxxxx, to lift xxxxx xxxxxx into the xxxx xxxx of channels to carry same xxxxxxx when xxxxxx. 
\begin{wrapfigure}{r}{2.2in}
  \begin{center}
    \includegraphics[width=2.2in,height=0.8in]{idis.png}
  \end{center}
  \caption{Visualization of sub-sampled points using DRS} \label{fig:4}
\end{wrapfigure}

在此处输入图片描述

答案1

来自wrapfig文档:

在段落之间开始环境很方便,但如果要放置在段落中间,则必须将环境放在两个单词之间有自然换行符的地方。

wrapfigure在您的代码中,您在文本后面写入内容,TeX 会拉伸该行:

\documentclass{article}

\usepackage{wrapfig}
\usepackage[nopar]{lipsum}

\begin{document}

\lipsum[3]
\begin{wrapfigure}{r}{3cm}
\centering\fboxsep5pt\fbox{Something}
\end{wrapfigure}
\lipsum[2]

\end{document}

在此处输入图片描述

正如文档所建议的,您最好将环境放在段落之间,例如,您应该wrapfigure在代码前面留一个空行。

相关内容