Как ссылаться на сноску? Например, если она построена так
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}