Possible Duplicate:
Using the amsbook Class
I am trying to change the header in the table of contents page with amsbook style file.
I tried:
\makepagestyle{calification}
\makeheadrule{calification}{\textwidth}{\normalrulethickness}
\makeevenhead{calification}{\uppercase{new header}}{}{}
\makeoddhead{calification}{\uppercase{new header}}{}{}
\makeevenfoot{calification}{}{}{}
\makeoddfoot{calification}{}{}{}
\def\calification{
\newpage
\null\vfil
\clearpage
\pagestyle{calification}
}
\def\endcalification{\par\vfil\newpage}
And then use
\begin{calification}
\tableofcontents
\end{calification}
This does not work with amsbook -- for some reason it tells me that \makepagestyle is an undefined sequence:
! Undefined control sequence.
l.46 \makepagestyle
{calification}
Any ideas?
fancyhdrpackage? It shouldn't be hard to incorporate your pagestyle specifications in thefancypage style. – Mico Jan 28 '13 at 12:42