Footnote citations in biblatex ignore spacing before the citation command; how can I have the same behavior for all footnotes in a document?
Here's a MWE demonstrating the issue:
\documentclass{article}
\usepackage[style=verbose-trad2]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
Spacing is fine before citations \autocite{kant:kpv}
but not before footnotes \footnote{A footnote \autocite{kant:ku}}.
\end{document}

\let\oldfootnote\footnote\def\footnote{\ifhmode\unskip\fi\oldfootnoteprobably works – David Carlisle May 06 '16 at 13:40