
Wie kann ich die Nummer einer Fußnote am Rand anzeigen lassen, anstatt sie in den Haupttext einzubetten? Ich habe versucht
\marginpar{ \footnote{ blah } }
und die Fußnotennummer wird angezeigt, jedoch nicht der Fußnotentext.
Beispiel:
\documentclass{article}
\begin{document}
Here is a normal footnote.\footnote{My footnote text.}
Next we'll place a note in the margin.\marginpar{Margin note here.}
Can we put a footnote number in the margin,
with the footnote text at the bottom of the page?\marginpar{\footnote{I hope so!}}
\end{document}
Ergebnis:
Ich habe auch das marginnote
Paket anstelle von ausprobiert \marginpar
, aber das hat auch nicht funktioniert.
Antwort1
Sie können das Befehlspaar \footnotemark
und \footnotetext
wie folgt verwenden:
\documentclass{article}
\newcommand{\marginfootnote}[1]{\marginpar{\footnotemark}\footnotetext{#1}}
\begin{document}
Can we put a footnote number in the margin, with the footnote text at
the bottom of the page?\marginfootnote{I hope so!}
\end{document}