Overview

Obsidian footnotes become real LaTeX footnotes — numbered automatically, placed at the bottom of the page.

How you write it in Obsidian

The named form is used for a sentence[^method] and the short form is written
directly at the spot^[a quick aside without a name].

The same source can be referenced twice[^method] in one note.

[^method]: Explained in detail by **Meier**, see [@meier2020, p.~14] and [[02 Methods]].

What Obsitex generates

The named form is used for a sentence\footnote{\label{fn:01_footnotes_method}Explained in detail by \textbf{Meier}, see \cite[p.~14]{meier2020} and \vref{sec:02_methods_methods}.} and the short form is written\\
directly at the spot\footnote{a quick aside without a name}.

The same source can be referenced twice\textsuperscript{\ref{fn:01_footnotes_method}} in one note.

Plain \footnote{…} — core LaTeX, no extra package, nothing to change in your preamble. Numbering is done by LaTeX itself.

How it looks in the PDF

<aside> 📸

Screenshot needed: a compiled page showing the raised footnote numbers in the body text and the matching notes separated by a rule at the bottom of the page.

</aside>

Tips & pitfalls