可能重复:
如何让文字环绕图形?
包裹图后文本宽度错误
我遇到了以下问题:我使用 wrapfigure 来包含浮动图片。但问题是,以下公式还受到 wrapfigure 的文本宽度的影响,因此图形不会超过整行,而只会超过在 wrapfigure 中设置的文本宽度的一半!
这是我的代码
\documentclass{book}
\usepackage{wrapfigure}
\usepackage{shadethm}
\usepackage{mdframed}
\newtheoremstyle{mystyle}
{\topsep}{\topsep}{}{}%
{\bfseries}{:}{.5em}{}%
\theoremstyle{mystyle}
\newmdtheoremenv[hidealllines=true,backgroundcolor=red,skipabove=\topsep,
skipbelow=\topsep]{example}{Example}
\newmdtheoremenv[hidealllines=true,
backgroundcolor=blue,skipabove=\topsep,
skipbelow=\topsep]{formula}{Formula}
\begin{document}
\subsection{Subsection with wrapfigure}
text text text text wich goes around the picture text text text text text text text
\begin{wrapfigure}{l}{0.5\textwidth}
\begin{center}
\includegraphics[scale=1]{picure.png}%width=0.48\textwidth
\end{center}
\caption{Caption}
\label{fig:zins}
\end{wrapfigure}
\noindent text text text
\begin{formel}[formula name] \label{geom}
$\\ \x + y +h+f+d+s+c+x+c+s+e+w+q+d+s+d+e=2323232323 +231231231 = 44$\\
or\\
$\bar{x}_{Geom}=\sqrt[n]{\frac{end}{begin}}$
\end{formel}
text text text text text text text text text text
\end{document}
正如我所说的,公式看起来是错误的,它只是写在了一半的空间上,就像在wrapfigure中设置的textwidth一样,当我添加一个
\begin{wrapfigure}{l}{0cm}\end{wrapfigure}
在公式之前,那么公式是正确的,但是下面的文字和项目的缩进是错误的?
好的,解决方法:在前面加上 \par,谢谢!