Hello everyone,
I'm doing some typesetting and need to mix one-column and two-column text in the same document; the same page as well, if possible. As this is normally a class option, is there a way to change this method in the middle of the document?
Thanks in advance!
General ⇒ Mixing one-column and two-column input
NEW: TikZ book now 40% off at Amazon.com for a short time.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Mixing one-column and two-column input
Try the multicol package.
Code: Select all
\documentclass{article}
\usepackage{multicol}
\usepackage{blindtext}
\begin{document}
\begin{multicols}{2}[\textbf{Example for a two column text}]
\blindtext
\end{multicols}
\begin{multicols}{3}[\textbf{Example for a three column text}]
\blindtext
\end{multicols}
\end{document}
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Mixing one-column and two-column input
Wow, this is exactly what I needed. Thanks a bunch!
Re: Mixing one-column and two-column input
Sorry to bump up such an old topic. I also want to be able to use mixtures of one or two columns, but I have a bunch of figures in my document, and apparently I can't put floats in a multicols environment. Is there anything I can do to get around this?