Compiling my MWE with the date=terse option to biblatex causes an extra space between the last digit in the year and the closing parenthesis. Commenting this option removes the extra space. How do I set the date to terse without causing this extra space?
\documentclass{article}
\usepackage[backend=biber,%
date=terse% comment to see difference.
]{biblatex}
\addbibresource{references.bib}
\begin{filecontents}{references.bib}
@article{vanderwaals2010theories,
author = "Van der Waals, Johannes Diderik",
title = "Hey! Check Out These Forces!",
year = 1873,
journal = "Studia Phisicum",
publisher = {Springer Nature},
}
\end{filecontents}
\begin{document}
Science has invented many things, including~\cite{vanderwaals2010theories}.
\printbibliography
\end{document}
If it matters, my environment is set up as follows:
bash-3.2$ pdflatex --version
pdfTeX 3.14159265-2.6-1.40.18 (TeX Live 2017)
kpathsea version 6.2.3
Copyright 2017 Han The Thanh (pdfTeX) et al.
There is NO warranty. Redistribution of this software is
covered by the terms of both the pdfTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the pdfTeX source.
Primary author of pdfTeX: Han The Thanh (pdfTeX) et al.
Compiled with libpng 1.6.29; using libpng 1.6.29
Compiled with zlib 1.2.11; using zlib 1.2.11
Compiled with xpdf version 3.04
bash-3.2$ biber --version
biber version: 2.10
biblatex/biber(3.13a/2.13). Be aware that the versions ofbiblatexbetween your version and 3.13 had a bug that caused this code to produce an actual error, so you will need to update to the most recent version. – Alan Munn Oct 09 '19 at 02:56