I am using multiple footnotes (\footnoteA, \footnoteB and \footnoteC) in a complicated text. I need to refer to some of them. I therefore tried the package
footmisc, but when I have a \label{} within a fn. and later refer to it with a \ref{}, all that I am getting is the number of the section or subsection, not that of the footnote.
E.g.:
"See also fn \ref{abhiman3}"
leads to
"See also fn 12.10.3.1.4" (this is the number of the subsubsection).
I also tried being more precise, i.e. \label{fn:abhiman3} and \ref{fn:abhiman3}, but the same result follows. \footref{} instead of \ref{} changes the section number to superscript, but still does not deliver what I want, namely the footnote number.
I tried the cref package, but it does not compile (possibly because of a conflict with another package).
Any alternative suggestion? Thanks!
UPDATE MWE:
\documentclass[11pt,twoside,a4paper]{book}
[…]
\usepackage[noeledmac]{ledmac}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{footmisc}
\begin{document}
\chapter{Introduction}
Copyist's mangala.\footnoteC{Auspicious verse.\label{mangala}}
Author's mangala\footnoteC{See fn. \ref{mangala}}
\end{document}
\pageref{}instead of\ref{}? This is not going to completely solve your problem, but it would be easier to find a footnote if you know the page number rather than the subsection. EDIT: I found this, it might help. – Amir Parvardi Apr 07 '22 at 15:43\documentclass...to\end{document}that we can compile and that shows your problem. How do you get multiple footnotes? How do you refer to them? – Peter Wilson Apr 07 '22 at 20:56\usepackage{reledmac}, instead ofledmac(and even withoutfootmisc), I get the desired reference: number of thefootnoteC, not of the section.reledmacis the "grandchild" ofledmac, which is nowadays deprecated.reledmacis actively maintained, has a variety of tools for referencing footnotes, hashyperrefsupport and is very flexible. Unless there's something specific holding you back, I very warmly recommend migrating toreledmac! (See the migration guide). – marquinho Apr 07 '22 at 22:47