Skip to content

Instantly share code, notes, and snippets.

@anderflash
Created December 12, 2018 13:30
Show Gist options
  • Save anderflash/4f94cc3bf0860269d28b7a0d560e89be to your computer and use it in GitHub Desktop.
Save anderflash/4f94cc3bf0860269d28b7a0d560e89be to your computer and use it in GitHub Desktop.
Figure in the middle of a multicol text
\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[english]{babel}
\usepackage{blindtext,calc,multicol,wrapfig}
\begin{document}
\begin{multicols}{2}
\blindtext
\begin{wrapfigure}[6]{r}[.5\width+.5\columnsep]{6cm}
\centering
\begin{minipage}{5cm}
\large
"The quick brown fox jumps over the sleazy dog. The quick brown fox jumps over the sleazy dog."
\end{minipage}
\end{wrapfigure}
\blindtext[2]
\begin{wrapfigure}[6]{l}[.5\width+.5\columnsep]{6cm}
\vfill
\end{wrapfigure}
\blindtext
\end{multicols}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment