I noticed that footmisc package has a nice feature for referring to a footnote, but the problem is that the number is displayed in the format of \footnotemark, i.e., superscript. I want to change the way it's displayed only when using \footref, while in footnotes \footnotemark should be superscript. Here's an example:
Code: Select all
\documentclass[12pt,a4paper]{book}
\usepackage{footmisc}
\begin{document}
Test\footnote{Testing footnote\label{fref}}. Look at the next page\ldots{}
\newpage
How to make footref display normal number and not superscript when referring?
\begin{quote}
''Look at the footnote~\footref{fref} on the page~\pageref{fref}.''
\end{quote}
should be:
\begin{quote}
''Look at the footnote~1 on the page~1.''
\end{quote}
\end{document}