views:

1845

answers:

2

I am using LaTeX and in some cases have multiline footnotes.

When I use a two-column format and especially when the reference to a footnote is low in the column, LaTeX will often split the footnote in half: it starts in the original column, but then continues under another column (sometimes in another page), which is very distracting.

Is there a way to force LaTeX to never split footnotes and allocate enough space for them?

+1  A: 

I've found that it's best to get the style sheet from where you're trying to publish, and just use their format (I'm assuming you're trying to publish somewhere, if you're using a double-column format). The editors can then handle wacky footnoting. If it's for a thesis, I don't know about your committee, but mine has told me that a single column, double-spaced is the way to go, which should avoid your problem in the first place.

mmr
Always worthwhile if one is availible.
dmckee
This is with the standard ACM/IEEE format... I'm working on a camera-ready version for the International Conference on Software Engineering, and then noticed this thing...
Uri
+7  A: 

Use \interfootnotelinepenalty=10000 to totally disallow this. But be prepared for other layout artifacts... Setting the penalty lower than 10000 will give TeX some flexibility in deciding when the side effects are too bad to bear.

For a detailed discussion see http://www.tex.ac.uk/cgi-bin/texfaq2html?label=splitfoot

dmckee
Thanks! Seems to work and doesn't cause too much trouble (a few extra lines length in the final layout)
Uri
The trouble is hit or miss. Sometimes the only this iyou get is a spare warning while compiling. Othertimes it can wreck merry havoc with two pages!
dmckee