I am writing an article with a multicol setting.
\usepackage{multicol}
\setlength{\columnsep}{0.5cm}
The text is organized in 2 columns.
\begin{multicols}{2}
Can I adjust the width of the text columns?
Any advise would be helpful..
THX
LA
I am writing an article with a multicol setting.
\usepackage{multicol}
\setlength{\columnsep}{0.5cm}
The text is organized in 2 columns.
\begin{multicols}{2}
Can I adjust the width of the text columns?
Any advise would be helpful..
THX
LA
It is possible to make columns of different width appear in what multicols produces as result. Set \columnsep to a negative number:
\setlength{\columnsep}{-2.5cm}
Assuming two columns, this definition will translate the right column to the left over the left column. If the left column's content is narrower than the column's width, then the resulting columns are of unequal width, without overlap of their content.
multicols calculates the column width as
( \linewidth - (n-1) * \columnsep ) / n
where n is the requested number of columns. \linewidth is usually the same as \textwidth unless you are inside a box or inside some of the display environments suchas quote or itemize where it is smaller. So to influence the column width within a multicols environment you can either change the \columnsep or provide a suitable \linewidth prior to starting the environment.
In any case all columns with have the same width as otherwise balancing wouldn't work (which is the main purpose of multicols.
multicol; Adjusting column width with themulticolpackage; How to set different width of columns? – Werner Dec 09 '15 at 14:52