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

Share this post:

  • Print this article!
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
Related posts:
  1. Placing subfigures in Latex documents
  2. Source code snippets in Latex
  3. Conditional compilation in Latex

Leave a Reply