On 10/01/2010 07:01 PM, Steve Litt wrote:
Hi all,

I'm using a document class derived from the Book class, and that can't change.

Given that, how can I get headers and footers to show up on the chapter intro
pages as well as the other pages? Every page that starts a chapter currently
has no header or footers, and magically prints its page number on the bottom
instead of in the header.

This is because the \chapter command changes the page style to plain. To change that, you will have to redefine the \chapter command. Here's the orignial, from book.cls:

\newcommand\chapter{...@openright\cleardoublepage\else\clearpage\fi
                    \thispagestyle{plain}%
                    \glob...@topnum\z@
                    \...@afterindentfalse
                    \secd...@chapter\@schapter}

Just change it to \renewcommand and take out the \thispagestyle.

rh

Reply via email to