I have a problem with the delimiter between multiple citations when using Biblatex-Chicago (compiling with XeLaTeX). Normally when citing multiple sources with \cites or \autocites, a semicolon appears between each source cited, but if the page-range ends with a full stop, this delimiter disappears for some reason.
Here's a minimum working example:
\documentclass[a4paper,12pt]{article}
\usepackage[authordate,backend=biber]{biblatex-chicago}
\addbibresource{DelimTestBib.bib}
\begin{document}
Here be dragons \autocites[57ff.]{Sievers1893}[33]{Kloekhorst2008}.
\printbibliography
\end{document}
The test bibliography file contains these two entries:
@book{Sievers1893,
author = "Eduard Sievers",
title = "Altgermanische Metrik",
date = "1893",
publisher = "Max Niemeyer",
address = "Halle",
}
@book{Kloekhorst2008,
author = "Alwin Kloekhorst",
title = "Etymological Dictionary of the Hittite Inherited Lexicon",
date = "2008",
publisher = "Brill",
address = "Leiden",
}
This gives me the following output:
Ideally the citation would be '(Sievers 1893, 57ff.; Kloekhorst 2008, 33)'. Obviously this can be corrected manually (by putting [57ff.;] as the page-range, for instance), but I'd like to have a more automatic solution if there is one.
I should mention that this problem occurs whether I use authordate style or footnotes.


