Text FormattingChanging width of columns in two column article

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
gutember
Posts: 1
Joined: Tue Jan 13, 2009 7:03 pm

Changing width of columns in two column article

Post by gutember »

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.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Changing width of columns in two column article

Post by gmedina »

Hi,

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}
Please refer to the package documentation for further information.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Changing width of columns in two column article

Post by localghost »

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.
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.


Best regards
Thorsten¹
Post Reply