I can't get rid of the period after each footnote citation created by \autocite. I have tried to redefine \autocite and a few other things but nothing has worked for me. Is there a consistent and easy way to remove the dot after all footnotes created by \autocite?
MWE:
Bibliography.bib
@book{a,
title={Test book},
author={Author, Test},
year={2000},
address={New York},
publisher={IMG}
}
Tex.tex
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber,autocite=footnote,citestyle=authoryear]{biblatex}
\bibliography{Bibliography}
\begin{document}
Hi there\autocite{a}
\end{document}
\bibfootnotewrapperin the documentation. – Ulrike Fischer Jun 29 '15 at 10:31