[Tex/LaTex] How to get a title page with the LaTeX article class?

articletitles

Possible Duplicate:
How can I get \maketitle to create a separate title page with the article class?

I'm trying to vertically center the title page and abstract in my LaTeX document (much like the report class does). I'm using the article class now. Essentially what I want is the report class without chapters, just sections and subsections etc.

Best Answer

Use the titlepage class option.

\documentclass[titlepage]{article}

\usepackage{lipsum}

\begin{document}

\title{(title)}
\author{(author)}
\maketitle

\begin{abstract}
\lipsum[1]
\end{abstract}

\lipsum[1]

\end{document}
Related Question