By default Latex formats the date as mmm d, yyyy, i.e. in the nonsensical middle endian format.
I would like to display it as d Mmm yyyy, e.g. 1 April 2018.
I've gone through the datetime2 documentation, but there is no dmmmyyyy option. I also have no luck using the babel package, because these is no english-za localization.
I would really like to avoid having to use the babel package, I have enough packages as is and I do not like the manipulations babel performs to the .aux file.
The following code illustrates the issue:
\documentclass[a4paper,english]{report}
\usepackage[english]{babel}
%I'd really like to just specify:
%\usepackage[d\space\Mmm\space\yyyy]{datetime2}
%So I can drop the day or rearrange things as needed
\usepackage[useregional]{datetime2}
%opening
\title{Test}
\author{Johan}
\begin{document}
\maketitle
\end{document}
