[Tex/LaTex] How to refer to a footnote

cross-referencingfootnotes

How do I refer to a footnote? For example, if is constructed like this

blah blah blah blah\footnote{blah blah \label{footnote_1}}

would you refer to it using this line?

As mentioned in note \ref{footnote_1}.

Best Answer

\documentclass{article}
\usepackage{footmisc}
\begin{document}

argument of the footnote command that is being 
labelled\footnote{Note text\label{fnlabel}}
potato head\footref{fnlabel}

\end{document}
Related Question