Consider the following MWE:
Code: Select all
\documentclass[danish]{article}
\usepackage{babel}
\usepackage{mathtools}
\usepackage{footnotebackref}
\usepackage[bottom,hang,stable,symbol]{footmisc}
\usepackage{hyperref}
\begin{document}
We have\footnotetext[2]{See \nameref{addendum}.}
\begin{equation}
a \stackrel{\mathclap{\footnotemark[2]}}{=} b.
\end{equation}
Furthermore
\begin{equation}
c \stackrel{\mathclap{\footnotemark[2]}}{=} d.
\end{equation}
\section*{Addendum}
\label{addendum}
Something.
\end{document}
\dag
symbols in the equations to link interactively to the footnote.How do I do this?
Thank you in advance!