I have a problem with my document. I use the
scrbook
class with the two options: twoside
and openright
. I want to print my document two sided once it is finished. But when I create the PDF the ToC always ends up on an even number i.e. on the backside of the paper, so that you have a empty page and only after turning the page you can see the ToC. I tried inserting an empty page but that does not help either. The ToC always ends up on the even page number. How can I force the ToC onto an odd page number?
Minimal example:
Code: Select all
\documentclass[
12pt,
a4paper,
titlepage,
appendixprefix,
headings=normal,
parskip=half*,
% chapterprefix,
twoside,
openright,
liststotoc
]{scrbook}
\begin{document}
\begin{titlepage}
\include{titel}
\end{titlepage}
\thispagestyle{headings}
\pagenumbering{roman}
~\newpage %to get "erklaerung" onto even page
\thispagestyle{headings}
\include{erklaerung}
\include{gutachter}
%PROBLEM is here: should be on even page number - is on odd one.
\tableofcontents{}
\listoffigures{}
\thispagestyle{empty}
\include{abstract}
\thispagestyle{empty}
~\newpage
\setcounter{page}{1}
\pagenumbering{arabic}
\include{chapter1}
\end{document}
Lord