Graphics, Figures & Tables ⇒ Figures in multicols Enviroment
Figures in multicols Enviroment
I am using the multicols enviroment, specifically two columns. But I am facing a problem with the figures, where I can not put them in one of the two columns, so I used figure* enviroment, to spread them over the two columns, but this solution consumes so much space. I have noticed some authors place their figures perfectly in one of the two columns, how did they do that?
Thanks in advance
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Figures in multicols Enviroment
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Figures in multicols Enviroment
I have this piece of code, for example:
Code: Select all
\documentclass[a4paper]{article}
\usepackage{tikz}
\usetikzlibrary{arrows}
\usetikzlibrary{through}
\usepackage{multicol}
\begin{document}
\begin{multicols}{2}
\begin{figure*}
\begin{center}
\begin{tikzpicture}[>=latex']
\node (source) at (0,0) [circle,draw] {};
\node (relay) at (3,2) [circle,draw] {};
\node (destination) at (6,0) [circle,draw] {};
\draw [->] (source.60) to node [auto] {} (relay.west);
\draw [->] (relay.east) to node [auto] {} (destination.120);
\draw [->] (source.east) to node [auto,swap] {} (destination.west);
\end{tikzpicture}
\end{center}
\end{figure*}
\end{multicols}
\end{document}
Thanks in advance
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Figures in multicols Enviroment
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10