I'm using the \author and \title commands to produce a title with \maketitle. I also know that there is a \date command to specify the date of my work. However, if I omit \date, \maketitle will produce the current date. How do I achieve that no date is displayed at all?
\documentclass{article}
\author{Author, A.}
\title{Alpha}
\begin{document}
\maketitle
Some text.
\end{document}

\date{}with thearticleclass (instead of simply omitting the date), the vertical alignment of any following text will change as if the spacing was removed. – lockstep Sep 05 '10 at 16:24\date{}it works fine. – The Student Dec 08 '12 at 23:56titlingpackage to remove space, you can do\predate{}and\postdate{}and then\date{}(as above). The same can be done for author (\preauthor{},\postauthor{}, and\author{}) and title. To remove the space after the title line itself, do\posttitle{\par\end{center}}, which is the same as the defaultposttitleexcept with the\vskip 0.5emomitted (seetexdoc titling, page 2). – Reid Feb 24 '14 at 13:52scrartclclass. – Faheem Mitha Jul 28 '19 at 11:33