I would like to combine the advdate package for relative dates and the datetime2 package for custom formatting. However, the datetime2 package seems to undo whatever advdate does. I've only found examples on here that use the datetime package, but I'd prefer not to rely on this (now obsolete) package. Is there a way to accomplish this?
MWE: (Note that the dates are as intended when I comment out the second line.)
\usepackage{advdate}
\usepackage{datetime2}
\begin{document}
Today is \today.
\SetDate[01/01/2022]
But January 1st, 2022 is not \today.
\end{document}````
