[Tex/LaTex] scrartcl: Remove page number on title page

header-footerkoma-scripttitles

I'm writing the abstract for my bachelor thesis. Therefore I use LaTeX.
Now I have the structure of my document, but it always prints me a page number on the page. It is only one page and instead of my title (abstract) und my abstract text there should be anything on the page.

The command \pagestyle{empty} should remove all header & footer, but it doesn't work

Here's my Script:

\documentclass[a4paper,12pt,headsepline,smallheadings]{scrartcl}

\usepackage[ngerman]{babel}
\usepackage[applemac]{inputenc}

\typearea{12}
\pagestyle{empty}

\title{Abstract}
\author{}
\date{}

\begin{document}

\maketitle

...TEXT...

\end{document}

Best Answer

\maketitle sets the pagestyle to \titlepagestyle. This can be redefined to be the empty pagestyle by

\renewcommand*{\titlepagestyle}{empty}

Complete example:

\documentclass[a4paper,12pt,headsepline,smallheadings]{scrartcl}

\usepackage[ngerman]{babel}
\usepackage[applemac]{inputenc}

\typearea{12}
\renewcommand*{\titlepagestyle}{empty}


\title{Abstract}
\author{}
\date{}

\begin{document}

\maketitle

...TEXT...

\end{document}