I am using the package like this:
\usepackage[nodayofweek, short]{datetime}
So when I am using \today it shows exactly what I want like this:
So I have two questions. One, how to omit the year? Two, how to show a specific date in a format like this, for example, Jun 15th.
Thank you for your help.


\formatdate{<day>}{<month>}{<year>}formats the given date in the current format. You can define a new format with\newdateformat{mydateformat}{\ordinaldate{} \shortmonthname}and then say\mydateformat\formatdate{<day>}{<month>}{<year>}. – cfr Jul 04 '23 at 19:46