I am creating a newspaper/pamphlet with three multicol columns and I want to be able to put a picture across two of the columns like so:
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
Can someone please provide:
- A way to do this with
multicol, or - An alternative package that can accomplish this?
MWE (doesn't really work though):
\documentclass{article}
\usepackage{multicol}
\usepackage{graphicx}
\usepackage{lipsum}
\begin{document}
\begin{multicols}{3}
\lipsum[1-4]
\begin{figure}[h]
\centering
\includegraphics{example-image-a}
\caption{Caption}
\label{Label}
\end{figure}
\end{multicols}
\end{document}