¿Cómo hacer referencia a una nota a pie de página?

¿Cómo hacer referencia a una nota a pie de página?

¿Cómo me refiero a una nota a pie de página? Por ejemplo, si se construye así

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

¿Te referirías a él usando esta línea?

As mentioned in note \ref{footnote_1}.

Respuesta1

\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}

Respuesta2

También funciona con el todopoderoso.cleveref(en lugar de footmisc):

\documentclass{article}
\usepackage{cleveref}
\begin{document}
Here is some real nondescript text\footnote{What a qualifier\label{xxx}}

Then I can refer later to \cref{xxx} (\Cpageref{xxx})
\end{document}

información relacionada