I would like to start each section on a new page. Is adding the following to my preamble this the preferred method, or a hack?
\let\stdsection\section
\renewcommand\section{\newpage\stdsection}
|
I would like to start each section on a new page. Is adding the following to my preamble this the preferred method, or a hack?
|
||||
| show 1 more comment |
|
The titlesec package allows to do this with just
It's cleaner than what you were doing and the package also allows to completely customize sections. Here's a fully compilable code sample showing how it works:
|
|||
|
|
\clearpageinstead of\newpageif you use floats. – Stefan Kottwitz♦ Jan 22 '11 at 22:11\section{with\clearpage\section{– Seamus Jan 22 '11 at 22:41