tags:

views:

378

answers:

4

Hi,

I recently had a problem when writing a Latex document which I posted here. The solution of adding the "twoside" option worked fine for me, except that when I have a page, say the conclusion, where I have just two paragraphs, so maybe half of the page filled and I then add a "\pagebreak" for having the "reference" part on a new page, it stretches the whole content of the conclusion page s.t. it fills up the whole page. This leads to the ugly thing that the spacing between the lines and paragraphs becomes huge.

I googled a bit, but didn't found any option to avoid this.

+2  A: 

I believe I was able to fix a similar problem with the multicol package, which provides a rather more powerful multi-column environment that the one built into the standard classes.


I just thought: are you using \raggedbottom? That would be worth a shot before bringing in a new package.

dmckee
No I'm not using \raggedbottom
Juri
Just another question, without having to open a new post. Do you have some info on how to correctly include urls in a bib db file?? With MISC?? Are there any other options?
Juri
There are several issues with URLs, but I think that most of them have already been addressed on SO. Try this search: http://stackoverflow.com/search?q=[latex]+url I'm not sure what special issues you'll face in a bibliography.
dmckee
\raggedbottom isn't always appropriate for the whole document; twopage spreads are balanced (i.e., end at the same vertical position) for a reason.
Will Robertson
This worked for me! Thank you dmckee
xpmatteo
+2  A: 

Not quite sure whether this will solve your problem, but try \clearpage instead of \pagebreak .

Jitse Niesen
Unfortunately not..thx anyway
Juri
Sorry, tried it the wrong way. It fixed my problem (although I guess it's just a "hack")
Juri
Not a hack. \clearpage tells LaTeX that you explicitly want this page terminated early. \pagebreak assumes you want balanced pages (in twopage mode), instead.
Will Robertson
@Robertson: Ok, thx for the info.
Juri
A: 

use the \newpage ??

Mica
A: 

How about:

\vfill\clearpage
dreamlax