
I've got a problem with biblatex-mla. I've used this package before without any problems but for some reason (had to reinstall MiKTeX and everything else) I've got one now

When I use
\autocite[11]{key}
, then the output in the document isn't (Author 11) but (Author11). I've tried looking in the documentation but couldn't find anything.. now I could of course just add a ~ in front of the page number manually, but when I quote from the same source repeatedly, I will end up with something like ( 11), which of course isn't acceptable.Does anyone have any ideas? I'm a bit lost.
Example Code:
Code: Select all
\documentclass{article}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=mla]{biblatex}
\usepackage{hyperref}
\bibliography{references}
\begin{document}
\autocite[76]{Delbridge1992}\\
\end{document}
Code: Select all
@BOOK{Delbridge1992,
title = {The Macquarie Dictionary},
author= {Max Mustermann},
publisher = {Macquarie Library},
year = {1992},
editor = {Arthur Delbridge}
}