I'm currently writing a research paper and want to manage my bibliography with biblatex. Everything is working fine except a minor annoyance:
Whenever I use the \footfullcite[pagenumber]{key} command there is no space between the full citation and the page number in the postnote.
I uploaded a minimal example here
Is there any way to solve this?
EDIT BY LOCKSTEP: Here's a boiled-down example that still shows the issue:
\documentclass{article}
\usepackage[style=authortitle]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@BOOK{test,
title = {The Infamous Test},
publisher = {Testington Test},
year = {2007},
author = {John Doe},
address = {Testville},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\null\vfill% just for the example
Postnote spacing/punctuation doesn't work for \verb|\footfullcite|,\footfullcite[1-10]{test}
although everything is correct for \verb|\footcite|.\footcite[1-10]{test}
\printbibliography
\end{document}
\finentry. At some point after 1.7\blx@initunitwas uncommented in the definition of\blx@finentry@usedrv. Not sure why. Using\protected\def\blx@finentry@usedrv{\unspace}should fix the issue. – Audrey Nov 4 '12 at 16:20