[Tex/LaTex] Latex class for one page document

document-classes

Which class should I use to write simple documents?

With 'simple documents' I mean short documents (about one or two pages) without the indication of author, title and dates.

Wikipedia says that minimal class should be used for debugging purpose and here I haven't found an answer to my question.

Best Answer

The default templates for the article document class commonly introduce the following:

\documentclass[]{article}

%opening
\title{}
\author{}

\begin{document}

\maketitle

\begin{abstract}
\end{abstract}
\section{}

\end{document}

The \maketitle command introduces the title, author, date components. If you do not want to have this structure you could just use the following:

\documentclass[]{article}

\begin{document}
YOUR TEXT
\end{document}

Then you can shape your document as you want (sections, alignment, margins etcetera).

Note, that there are many document classes that would allow for different settings, and of course that its not that difficult to make a document class yourself!