If you use the memoir class, then a simpler (but less general) method is to simply override the \afterpartskip command.
I wrote:
\renewcommand{\afterpartskip}{\vfil}
in my preamble.
This works because pagination is generated from
\newcommand{\afterpartskip}{\vfil\newpage}
in memoir.cls. (It is called from the \partpageend ).
This method simply removes the \newpage , which may be all you want to do.
Tom
source share