Graphics, Figures & Tablesmulticolumns[3] and image that is covering exactly 2 columns

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
Natan
Posts: 9
Joined: Fri Oct 23, 2020 2:53 pm

multicolumns[3] and image that is covering exactly 2 columns

Post by Natan »

I am "designing" the layout for a newspaper. Therefore I try to find different representations of image placement in multicols. So far I know of only few.
For this specific topic I am interested in finding a solution to this:
How can I place an image in a 3 column environment in such a way that it spans over exactly two of those columns. The third column should be filled with regular text. One might think of something similar using figur* and 2 column and just imagine that there would be a third column next to it.

An option would be ending the three-column and placing minipages, but this is not really a solution, is it ^^ The text would be broken and it wouldn't look nice.

This is just an example of a few things I know that are possible with images and multicols so you might have a starting point.

Code: Select all

\documentclass[a4paper]{article}
\usepackage{multicol}
\usepackage[demo]{graphicx}
\usepackage{kantlipsum}
\newenvironment{Figure}
{\par\medskip\noindent\minipage{\linewidth}}
{\endminipage\par\medskip}
\begin{document}

\begin{multicols}{3}
\kant[1]
\begin{Figure}
\centering
\includegraphics[width=\linewidth]{foo}
\end{Figure}

\kant[2-3]
\begin{figure*}
\centering
\includegraphics[width=\linewidth]{foo}
\end{figure*}
\kant[4-5]
\end{multicols}

\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Post Reply