When using the footmisc package it causes many PdfTeX errors in my thesis:
pdfTeX warning (dest): name{Hfootnote.1} has beend referenced but does not exist, replaced by a fixed one
Here is a MWE:
\documentclass[12pt, oneside]{Thesis}
\usepackage[backend=biber, autocite=footnote, citestyle=authoryear-icomp, bibstyle=authoryear]{biblatex}
\usepackage[bottom, hang]{footmisc}
\usepackage{filecontents}
\begin{filecontents*}{jobname.bib}
@book{SomeSource,
author = {The Author},
year = {2015},
title = {The Title}
}
\end{filecontents*}
\addbibresource{jobname.bib}
\begin{document}
Some Text.\autocite[][123]{SomeSource}{}
\printbibliography[]
\end{document}
I found several posts saying, that one should load the hyperref package after all other packages, but whether or not I load the package and regardless of the position within the code, the issue remains.
An idea anyone?
BTW: I'm using the versions hyperref.sty 2012/11/06 v6.83m Hypertext links for LaTeX and footmisc.sty 2011/06/06 v5.5b a miscellany of footnote facilities.
\usepackage{hyperref}after\usepackage[bottom, hang]{footmisc}, I don't get that warning. – Sep 20 '15 at 09:51hyperref? Because I just tried it again fearing I made this post for nothing - but still the same behaviour. Could it be that any other configuration is wrong? – Wrstkpp Sep 20 '15 at 10:00biblatex, you can add the optionhyperref=false(default isauto). But I'd just loadhyperref, and probably load it with the optionhyperfootnotes=false. My guess, however, is that yourThesis.clsis doing something it shouldn't, like loadhyperrefat an ill-advised time. – jon Sep 20 '15 at 15:59hyperref=falseor\usepackage[hyperfootnotes=false]{hyperref}as proposed by @jon had any effect. Is there any way I can look into theThesis.clsfile? I searched for it but couldn't locate it on my PC ... – Wrstkpp Sep 20 '15 at 16:39hyperrefis loaded beforefootmiscfor whatever reason. See the latest discussion here (https://tex.stackexchange.com/questions/203439/footnotes-misbehaving-in-report-go-to-front-page-but-behave-correctly-in-other-r/516359#516359). – Ross Moore Nov 15 '19 at 21:42