I have the following command to display EPS figures and wrapping text around the figure:
\begin{wrapfigure}{r}{0.5\textwidth}
\begin{center}
\includegraphics[width=0.48\textwidth]{figures/flowchart}
\end{center}
\caption{A gull}
\end{wrapfigure}
The problem is that the figure is displayed and text is wrapped not only around the figure, but also for all following paragraphs. Any help?

\begin{wrapfigure}[10]{r}{0.5\textwidth}will make the figure take up 10 lines of vertical space. – Torbjørn T. Dec 28 '12 at 23:45