[Tex/LaTex] Custom Date on Latex

datetimeformatting

I have the following code:

\shortdayofweekname{<day>}{<month>}{<year>}.

Packages:

\documentclass[a4paper]{article}  
\usepackage[english]{babel}  
\usepackage[utf8]{inputenc}  
\usepackage{amsmath}  
\usepackage{graphicx}  
\usepackage[colorinlistoftodos]{todonotes}  
\usepackage{amsthm}  
\usepackage{amssymb}  
\newtheorem{thm}{Theorem}  
\newtheorem{lma}{Lemma}  
\newtheorem{df}{Definition}  
 \newtheorem{axiom}{Axiom}  
\theoremstyle{definition}  
 \newtheorem{exmp}{Example}[section]  
\usepackage{amsthm}  
\newtheorem{theorem}{Theorem}  

I want to customize the date on my paper so that it only says "May 2014" with custom size. How can I do this? I don't have any special packages imported. I'm also using writeLatex. Help is much appreciated.

Best Answer

You can use the isodate package:

\documentclass[a4paper]{article}

\usepackage[english]{isodate}

\title{Your Paper}    
\author{You}    
\date{\printdayoff\today}

\begin{document}
\maketitle  

\end{document}

Printing the day is switched off using \printdayoff

If you want to change the font size use something like:

\date{\Huge\printdayoff\today}

example