
So erhalten Sie diese Automatisierung
"Wenn eine kurze einzelne Notiz auf einer Seite zentriert werden soll, setzen Sie mehrere sehr kurze Notizen in die gleiche Zeile mit 3 EMs dazwischen."
wie die folgende Ausgabe
1. Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text
2. short footnote 3. short footnote 4. shortfootnote
5. Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text
Antwort1
Derbigfoot
Paketfunktionen (neben dem verbesserten Standardmakro \footnote
) die Makros \footnote+
, die einfache Fußnoten erzwingen (selbst wenn der Standardstil ist para
) und \footnote-
die Fußnoten im Absatzstil erzwingen (selbst wenn der Standard ist plain
). Fußnoten, die angezeigte Gleichungen, Zitate oder Listenumgebungen enthalten, müssen im einfachen Stil sein; wenn Ihr Standardstil ist, müssen Sie daher für die entsprechenden Notizen para
verwenden .\footnote+
\documentclass{article}
\usepackage{bigfoot}
\DeclareNewFootnote[para]{default}
\newcommand*{\sometext}{Hello, here is some text without a meaning. This
text should show, how a printed text will look like at this place.
If you read this text, you will get no information.}
\begin{document}
\null\vfill% just for the example
First paragraph.\footnote+{%
\sometext
\begin{equation}
a^2 + b^2 = c^2
\end{equation}
}
Second paragraph.\footnote{A short footnote.}
Third paragraph.\footnote{Another short footnote.}
Fourth paragraph.\footnote+{%
\sometext
\begin{quote}
\sometext
\end{quote}
}
\end{document}