Posts tagged ‘wrap figure’

Wrap text around float figures in Latex

The wrapfig package enables text wrapping around figures.

\usepackage{wrapfig}

To include a wrapped figure we can use the \begin{wrapfigure} command. You have to specify the alignment (l, r) and the figure’s width. Here is an example:

\begin{wrapfigure}{r}{60mm}
\begin{center}
\includegraphics[scale=0.5]{images/nature_photography.jpg}
\end{center}
\caption{Wrapped image.}
\end{wrapfigure}

And the final result.

picture 11 Wrap text around float figures in Latex