On Fri, Oct 26, 2001 at 06:22:57PM +0200, Andre Poenitz wrote: > > > i want each section of mine to start on a new page ... > > This, of course, is usually done by selecting the proper documentclass. > "book" e.g. starts every section on a new page, if I am not mistaken...
The correct way to do this (if it is not done by the documentclass) is to
add the following lines to the preamble:
\let\oldsection=\section
\renewcommand{\section}{\pagebreak\oldsection}
