vote up 1 vote down star

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.

flag

50% accept rate
See here: meta.stackoverflow.com/questions/12918/… on the appropriateness of latex questions on SO. – dmckee Sep 1 at 16:33
Yes. Everything that is not programming related does not belong, so anything that does belong must be programming related. – dmckee Sep 1 at 16:39
Sure, I was already wondering why there exists a tag "not-programming-related". – Juri Sep 1 at 16:41
It is a hanger on from an earlier epic on the site. Some moderate rep users use it to draw the attention of higher rep users to questions that might need closing. I believe that this is discouraged, but can't provide a link. – dmckee Sep 1 at 17:00

4 Answers

vote up 1 vote down

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.

link|flag
No I'm not using \raggedbottom – Juri Sep 1 at 16:39
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 Sep 1 at 20:39
There are several issues with URLs, but I think that most of them have already been addressed on SO. Try this search: stackoverflow.com/search?q=[latex]+url I'm not sure what special issues you'll face in a bibliography. – dmckee Sep 1 at 21:06
\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 Sep 2 at 5:56
vote up 2 vote down

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

link|flag
Unfortunately not..thx anyway – Juri Sep 1 at 16:41
Sorry, tried it the wrong way. It fixed my problem (although I guess it's just a "hack") – Juri Sep 1 at 17:02
1  
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 Sep 2 at 5:56
@Robertson: Ok, thx for the info. – Juri Sep 2 at 15:23
vote up 0 vote down

use the \newpage ??

link|flag
vote up 0 vote down

How about:

\vfill\clearpage
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.