如何引用註腳?

如何引用註腳?

如何引用註腳?例如,如果是這樣建構的

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}

相關內容