On Tue, Aug 20, 2002 at 07:55:43PM -0400, Craig Morehouse wrote:
> I have done this, but it doesn't change the Header the way a Chapter 
> does. It continues the heading of the previous chapter.
> 
> So how can I get it to change the header like a real Chapter would?

\markboth{\MakeUppercase{text}}{}
(or \markboth{TEXT}{})
It is best to create a new layout that does all of these automatically,
or if you want all Chapter* to behave like this, then add the following to
the preamble:

\let\old@schapter=\@schapter
\def\@schapter#1{%
  \old@schapter{#1}%
  \addcontentsline{toc}{chapter}{#1}%
  \markboth{\MakeUppercase{#1}}{}}
\let\oldtableofcontents=\tableofcontents
\def\tableofcontents{{\let\@schapter=\old@schapter%
  \oldtableofcontents}}

Reply via email to