How to print current date in "1st June 2004" format?

E

Eric

Hi
How to print current date in "1st June 2004" format? And "st, nd, rd, and th" with smaller font size and in upper position
Thank you.
 
J

Jonathan West

Eric said:
Hi,
How to print current date in "1st June 2004" format? And "st, nd, rd, and
th" with smaller font size and in upper position.
Thank you.

I think you need two fields for this, as follows

{ DATE \@ "d" \* Ordinal } { DATE \@ "MMMM yyyy" }
 
Top