Text Formatting ⇒ Changing width of columns in two column article
Changing width of columns in two column article
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
Changing width of columns in two column article
one possibility is to use the multicol package. A simple example:
Code: Select all
\documentclass{article}
\usepackage{multicol}
\usepackage{lipsum}% just to generate some text
\setlength\columnwidth{3cm}
\setlength\columnsep{3cm}
\begin{document}
\begin{multicols}{2}
\lipsum[1-20]
\end{multicols}
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Changing width of columns in two column article
In a standard article class with twocolumn option you can modify the page dimensions with the geometry package. This affects also the width of the columns. To modify the separating space between them you can set the length \columnsep to a new value.gutember wrote:Hi everybody. I'm with an article in two columns and I want to modify the width of each column and the space between them. Thanks a lot.
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10