Text Formatting ⇒ Changing width of columns in two column article
Changing width of columns in two column article
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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
Changing width of columns in two column article
Hi,
one possibility is to use the multicol package. A simple example:Please refer to the package documentation for further information.
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}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
- 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¹
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