PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Fußnoten: Immer auf der jeweiligen Seite



lachgas
24-03-2006, 10:42
Hallo,

ich habe die Lösung für dieses Problem schon einmal irgendwo gelesen, finde sie nach Recherche bei Google und hier im Forum aber nicht mehr wieder. Mir fehlt wohl das passende Stichwort.

Jedenfalls: Wie kann ich erreichen, dass alle jeweiligen Fußnoten, egal welche Gesamthöhe sie auch haben, immer auf der jeweiligen Seite angemerkt werden und sich nicht über 2 Seiten erstrecken? Dies könnte bei meiner Arbeit ggf. für Irritationen sorgen.

Danke,
Lachgas

edico
24-03-2006, 13:41
... aus meinem sample:
%
\documentclass{scrartcl}
\usepackage{blindtext}
\begin{document}
\section*{No break within a footnote}
How can I prevent a page break within a footnote? Instead of continuing the
footnote on the next page, you would prefer much more room on the first page
to hold the entire footnote rather than breaking the footnote. \footnote{\parbox[t]{\linewidth}{This is a footnote. This alone won't prevent all breakage.
Since you say `leave more room', you should make sure you declare raggedbottom. However, LaTeX's raggedbottom tries not to affect the pagination, so it doesn't *use* its extra flexibility when deciding page breaks. To allow more flexibilty in avoiding broken footnotes, give some stretch to the topskip parameter. Don't worry; with raggedbottom the top will stay flush \dots And there comes still more text \dots \blindtext} }
\end{document}
%
edico

Spucki2000
13-04-2006, 02:03
Hallo edico,

ich habe das gleiche Problem, aber ich habe irgendwie Deine Antwort nicht verstanden. Ich habe die Datei erstellt, aber was nun?

edico
13-04-2006, 17:06
... du musst nur 1+1 zusammenzählen:
%
\documentclass[a5paper,12pt]{article}%{scrartcl}
\usepackage{blindtext}
\begin{document}
\section*{No break within a footnote}
How can I prevent a page break within a footnote? Instead of continuing the
footnote on the next page, you would prefer much more room on the first page
to hold the entire footnote rather than breaking the footnote.
\footnote{\parbox[t]{\linewidth}{This is a footnote. This alone won't prevent all breakage. Since you say `leave more room', you should make sure you declare raggedbottom. However, LaTeX's raggedbottom tries not to affect the pagination, so it doesn't *use* its extra flexibility when deciding page breaks. To allow more flexibilty in avoiding broken footnotes, give some stretch to the topskip parameter. Don't worry; with raggedbottom the top will stay flush \dots And there comes still more text \dots \blindtext} }
How can I prevent a page break within a footnote? Instead of continuing the
footnote on the next page, you would prefer much more room on the first page
to hold the entire footnote rather than breaking the footnote. \blindtext[2]
\footnote{This is a footnote. This alone won't prevent all breakage. Since you say `leave more room', you should make sure you declare raggedbottom. However, LaTeX's raggedbottom tries not to affect the pagination, so it doesn't *use* its extra flexibility when deciding page breaks. To allow more flexibilty in avoiding broken footnotes, give some stretch to the topskip parameter. Don't worry; with raggedbottom the top will stay flush \dots And there comes still more text \dots \blindtext}
\end{document}
%
edico