Am Samstag, 4. Mai 2002 16:07 schrieben Sie:
> Marko Degenkolb wrote:
> > I have a document using koma-script book which contains parts and
> > chapters. By default both start on an odd (right) page.
> > This is fine for the part but the chapter should start on the
> > _next_ page, i.e. even or odd, to avoid too many empty pages.
>
> try this:
>
> \renewcommand\chapter{\clearpage
> \thispagestyle{\chapterpagestyle}%
> \global\@topnum\z@
> \@afterindentfalse
> \secdef\@chapter\@schapter}
>
> Herbert
Hi Herbert,
thanks a lot for your quick help.
However, I get syntax errors for each chapter when compiling.
I then changed
\renewcommand\chapter{\clearpage
\secdef\@chapter\@schapter}
to
\renewcommand{\chapter{\clearpage
\secdef\@chapter\@schapter}}
but still get the 3 errors right at the beginning:
Undefined control sequence.
... \secdef\@chapter\@schapter}}
Marko