Fußnotennummerierung
Verfasst: Do 25. Apr 2019, 13:43
Ich möchte, dass die Fußnoten über Kapitel hinweg durchgehend nummeriert werden. Gleichzeitig muss ich teilweise manuelle Fußnoten verwenden.
Zur Illustration ein Minimalbeispiel
Die Fußnote in Chapter 2 soll nun die Nummer 3 anstelle der 1 bekommen.
Zur Illustration ein Minimalbeispiel
\documentclass[12pt,a4paper]{report}
\begin{document}
\chapter{1}
text\footnote{fussnote} text\footnote{noch eine}
\renewcommand*{\thefootnote}{\fnsymbol{footnote}}
mehr text\footnote[1]{fancy fussnote}
\renewcommand*{\thefootnote}{\arabic{footnote}}
\chapter{2}
text\footnote{noch eine fussnote}
\end{document}