I'd like to increment the date in the format
[Day of week] [Day] [Month] [Year]
by one each step, but I can't get the day of the week to increment. I've been looking at this answer but I can't get dow to advance properly.
\documentclass{article}
\usepackage[british]{babel}
\usepackage[useregional,showdow]{datetime2}
\usepackage{advdate}
\usepackage{etoolbox}
\makeatletter
\appto\FixDate{%
\edef@dtm@currentyear{\the\year}%
\edef@dtm@currentmonth{\the\month}%
\edef@dtm@currentday{\the\day}%
% \edef@dtm@currentdow{\the\dow}%??
}
\makeatother
\begin{document}
\today
\AdvanceDate[1]
\today
\AdvanceDate[1]
\today
\AdvanceDate[1]
\today
\AdvanceDate[1]
\today
\end{document}
