views:

7353

answers:

1

My LaTex file:

\maketitle
\begin{abstract}
   For over a century, fingerprints have been an undisputed personal identifier. 
   Recent court rulings have sparked interest in verifying unique...
\end{abstract}

I would like to a similar titlepage as here.

My document class is article. This is the beginning of my file.

+5  A: 

The abstract appears on its own page because you've specified the titlepage option to the article document class:

\documentclass[12pt,a4paper, titlepage]{article}

If you remove this option (or specify notitlepage), then the abstract will appear on the first page, together with the article title, author, and date:

\documentclass[12pt,a4paper,notitlepage]{article}

Then, if you want the first section of the article to start on a new page, you should add a \clearpage command:

\clearpage
\section{First Section}
ChrisN
Thank you! Which one should I use: \clearpage or \newpage?One problem arised: How can I have pagenumbers start, where the section first occurs?
Masi
The difference between \clearpage and \newpage is that \clearpage ensures that any floats (e.g, figures and tables) are output before starting the new page. In this case either \clearpage or \newpage would work. I tend to use \clearpage out of habit.
ChrisN