http://alexandervanloon.nl/bsk.pdf
Take a look at the right column of text on the first page of the document. It’s obviously not looking good, the white space between the paragraph is almost as high as a line.
I created a minimal example (text is from the Iliad) and uploaded that as well as the source file. It’s compiled with xelatex, so my definition of a ‘minimal’ example might not be so minimal for others, but hopefully it will do:
http://alexandervanloon.nl/multicol-test.pdf
http://alexandervanloon.nl/multicol-test.tex
In the example the problem can also be seen in the right column of text on the first and the last page.
I thought that I might prevent this if the section heading and it’s white space or skip before and after the section ehading would be exactly as high as the ordinary lines. So I modified the previous document with the following code in the preamble:
Code: Select all
\setsecheadstyle{\normalfont\bfseries} % Change section heading to normal sized bold font
\setbeforesecskip{-\onelineskip} % Changes vertical space after section heading to one line
\setaftersecskip{\onelineskip} % Changes vertical space after section heading to one line
http://alexandervanloon.nl/multicol-test-modified.pdf
http://alexandervanloon.nl/multicol-test-modified.tex
In the resulting PDF-document, the second, third and fourth pages now look good, with all lines of both columns at equal height. However, the text on the first and last pages still looks like garbage with huge white space between the paragraphs.
I’ve read the manual of the multicol package. The manual suggested playing with the \tolerance command, but that didn’t make any difference, and provided no help. Google doesn’t know the answer either.
A two column format is often used in scientific journals I come across, where the columns are always perfectly balanced with no white space, and the lines of both the columns are almost exactly at the same height. I hope LaTeX can produce such beautiful, ‘correct’ two column documents too?
I’m using the latest version of the multicol package, 1.6h, and I’m on Ubuntu Linux 10.04 so the TeXLive packages should probably be adequately up to date as well.