My Latex code is:
\documentclass{article}
\begin{document}
\author{Author}
\title{Title}
\maketitle
Document's text.
\end{document}
How can I not show the document's date?
Insert
\vspace{-8ex}
\date{}
before \begin{document}. You can adjust the vertical space as per your requirement.
\vspace – moreover, the \vspace command has no effect before \begin{document} – and lastly \date{} will automatically eliminate the space reserved for the date, so no need for negative space
– jan
Dec 29 '20 at 19:02
\date{}before\maketitle. – egreg Dec 11 '16 at 22:49