I need to refer the same footnote in different lines. I am using scrbook class. I read Reference different places to the same footnote and tried in following way:
First time referencing\footnote{\label{footnote}text}.
Second time referencing\footref{footnote}.
But it gives the following output. Would anyone please suggest for the second time referencing how to display only the number instead of "footnote no."? Thank you.
Update: Minimal working example
\documentclass{scrbook}\begin{document}
\AtBeginDocument{\renewcommand{\ref}[1]{\mbox{\autoref{#1}}}}
\newlength{\abc}
\settowidth{\abc}{\space}
\AtBeginDocument{%
\addto\extrasenglish{
\renewcommand{\equationautorefname}{\hspace{-\abc}}
\renewcommand{\sectionautorefname}{sec.\negthinspace}
\renewcommand{\subsectionautorefname}{sec.\negthinspace}
\renewcommand{\subsubsectionautorefname}{sec.\negthinspace}
\renewcommand{\figureautorefname}{Fig.\negthinspace}
\renewcommand{\tableautorefname}{Tab.\negthinspace}
}
}
\usepackage[figure]{hypcap}
First time referencing\footnote{\label{footnote}text}.
Second time referencing\footref{footnote}.
\end{document}



\documentclass{scrbook}\begin{document}and\end{document}I do not get that result. There must be some other code or package in your document you haven't shown that is responsible. Please post a minimal working example showing the problem. – frabjous Apr 14 '22 at 02:29