Gunnar wrote:

Just a futile attempt to solve it, but why wouldn't a thing like this work?

\renewcommand{\section}[1]{\newpage\section{#1}}

I tried but it didn't.

You can't redefine a command with itself. Try this code instead:

\let\mysection\section
\renewcommand{\section}[1]{\newpage\mysection{#1}}

regards Uwe

Reply via email to