Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to prevent LaTeX from splitting long footnotes across multiple column/pages?

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?

like image 608
Uri Avatar asked Jan 26 '09 17:01

Uri


People also ask

How do you keep footnotes from breaking across pages in LaTeX?

The easiest (and most brutal) thing they suggest is setting \interfootnotelinepenalty=10000 , which will prevent the footnote from breaking across pages. Alternatively, they suggest adjusting the space on the page (using \enlargethispage{<length>} ), to force the line with the footnote onto the next page.

Can you label footnotes in LaTeX?

LaTeX offers the \footnote command and referencing works using the \label and \ref commands. The following code shows some example text and how to add a footnote with a label: ... This is some example text\footnote{\label{myfootnote}Hello footnote}.

How do I change footnote numbers in LaTeX?

You can change the numbering style for the footnotes in LaTeX you are using. You can do this using the command \renewcommand{\thefootnote}{\roman{footnote}} where roman can be swapped out with other footnote types.


2 Answers

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 the TeX FAQ item Why does LaTeX split footnotes across pages?

like image 133
dmckee --- ex-moderator kitten Avatar answered Sep 18 '22 21:09

dmckee --- ex-moderator kitten


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.

like image 33
mmr Avatar answered Sep 22 '22 21:09

mmr