On Sun, 5 May 2002, Marko Degenkolb wrote:
> 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.
try this, worked for me with book and report
\renewcommand\chapter{\clearpage
\thispagestyle{empty}%
\global\@topnum\z@
\@afterindentfalse
\secdef\@chapter\@schapter}
Herbert