脚注を参照するにはどうすればいいですか?

脚注を参照するにはどうすればいいですか?

脚注を参照するにはどうすればいいでしょうか?例えば、次のように記述すると

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

この行を使用して参照しますか?

As mentioned in note \ref{footnote_1}.

答え1

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

答え2

それは全能の神にも作用するcleveref(の代わりに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}

関連情報