General ⇒ Cross Reference to Footnote
Cross Reference to Footnote
can anybody tell me how I can make a crossreference to a footnote? \label{x} and \ref{x} does not seem to work and I couldn't find anything online.
Thanks!
Bettina
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Cross Reference to Footnote
Code: Select all
\documentclass{article}
\usepackage{blindtext}
\begin{document}
\blindtext\footnote{Just a test footnote\label{ftn:test}}
\Blindtext As mentioned in footnote \ref{ftn:test} (page \pageref{ftn:test})...
\end{document}
Re: Cross Reference to Footnote
thanks a lot!!!