각주를 어떻게 참조하나요? 예를 들어, 다음과 같이 구성되면
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}