I'm trying to get a two column "academic style" paper layout on my LaTeX paper. I'm aware there are at least two common ways of doing this, either with adjusting \documentclass or with the more versatile multicol package. I'm using the latter.
Initially I'm trying to just get a template I found working, it is as follows:
\documentclass{article}
\usepackage{multicol}
\begin{document}
\begin{multicols*}{2}
\addtolength{\linewidth}{2.5in}
A lot of text here ...
\end{multicols*}
\end{document}
I've been trying to use various parameters such as the \linewidth given to \addtolength as in the above example, but it seems to have no effect whatsoever on the resulting document.
How is the column width adjusted? Is it correct to adjust it like I'm attempting?


