I'm using MacTex 2019 as my LaTeX environment. Everything seems to work properly except this thing. For some reason, the minimal example at the bottom gives the following error:
main.tex:23: Undefined control sequence.
\lbx@us@mkdaterangetrunc@short ...}}}}}\endngroup
The error is gone if I change the option alldates to something else than terse such as long or short.
How could I make the terse option work as that is the format I'd like to use? Am I doing something wrong here?
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{filecontents}
\begin{filecontents*}{ref.bib}
@online{foo,
title={Foo},
url={https://example.com},
}
\end{filecontents*}
\usepackage[backend=biber, alldates=terse]{biblatex}
\addbibresource{ref.bib}
\begin{document}
\section{Introduction}
Introduction \cite{foo}.
\printbibliography
\end{document}
endngroupindeed was the thing the error message was referring to. I wonder if there is an easy way to update a single package (on MacTex) when it is released? – Paapaa Jul 11 '19 at 21:07biblatexmakes it to CTAN (no ETA as of yet). See also https://tex.stackexchange.com/q/55437/35864 – moewe Jul 11 '19 at 21:10