I've been trying to to display dates in the format "dd"/"mm" (months preferably roman letters) - however I can't find a single style that supports this requirement. Additionally I'm trying to calculate week long intervals with the created commands:
\documentclass[12pt]{book}
\usepackage[british,calc,useregional=numeric]{datetime2}
\newcount\myct
\newcount\datecount
\newcommand{\myday}[1]{%
\DTMsavenow{mydate}
\DTMsaveddateoffsetjulianday{mydate}{#1}{\myct}
\DTMsavejulianday{mydate}{\number\myct}
\DTMusedate{mydate}
}
And use it in the following way:
\begin{document}
\myday{1} - \myday{7}
\myday{8} - \myday{14}
\end{document}
However no matter how I try to redefine the DTMusedate commands to only display day and month I usually get some interpreter error which isn't of much use (I'm a newb at tex programming). So I'd appreciate any input.
Thanks, drinker

datetime2do you use? You can check by putting\listfilesat the line below\documentclassand looking at the terminal output. I use version 1.5.2 (2016/07/12) which compiles the MWE correctly. – Marijn Oct 03 '18 at 07:45datetime2. In that case you can try to gradually expand the MWE posted in my answer to recreate your real document step by step, and check when the error occurs. If you tried the MWE as it is and you still get errors then something else is wrong, in that case it would be helpful to see the exact error message and relevant sections of the log file. – Marijn Oct 04 '18 at 07:41