[Tex/LaTex] unwanted pagebreak in footnote

footnoteshyperrefurls

I'm trying to reference a long URL in a footnote. I'm usig hyperref-package (which loads automatically the url-package).

\usepackage[unicode=true, 
bookmarks=true,bookmarksnumbered=true,bookmarksopen=true,bookmarksopenlevel=1,
breaklinks=false,pdfborder={0 0 0},backref=false,colorlinks=false]
{hyperref}
\urlstyle{rm}

My footnote looks like this:

\footnote{\url{https://www.apple.com/pr/library/2008/04/03iTunes-Store-Top-Music-Retailer-in-the-US.html} - besucht 14.08.2012}

The URL is seperated in 2 linex, but the first line is on one page and the second line is on the next page. Page1 Page2

Do you know how i can fix that issue?

Best Answer

It is difficult to reproduce the behaviour, but I have following suggestions:

  1. Try loading the package bigfoot, which does wonder to the layout of footnote.

  2. Try adding the command \enlargethispage{\baselineskip} to increase the type block, or \enlargethispage{-\baselineskip} to reduce type block.

  3. Try rephrasing the text so the footnote reference is another place in the sentence and on the page.

  4. Try adding a \nopagebreakat the end of the footnote.

    \footnote{\url{https://www.apple.com/pr/library/2008/04/03iTunes- Store-Top-Music-Retailer-in-the-US.html} - besucht 14.08.2012 \nopagebreak}

Related Question