How do I skip numbering until the beginning of chapter 1 with scrbook?
I'm using something alone the lines of
\begin{document}
\pagestyle{empty}
\pagenumbering{none}
\maketitle
\tableofcontents
\pagestyle{headings}
\pagenumbering{arabic}
\chapter{My first chapter}
in the beginning of the book, but the table of contents is still numbered, so chapter 1 is on page 3. How do I completely skip numbering until the beginning of chapter 1?