The school requires continuing pages must be headed as "TABLE OF CONTENT (continued)" if the table of contents is longer than one page.
I use \tableofcontents command in the .tex file.
And define it in .cls file as below.
However, only "TABLE OF CONTENT" is showing on the first page of table of contents.
Can anyone help to point out what I should put in .cls file please?
Code: Select all
\def\tableofcontents{
\clearpage
\typeout{TABLE OF CONTENTS.}
\def\headmark{\vbox{
\hbox to \textwidth{\bfseries\large\hfil TABLE OF CONTENTS
(Continued) \hfil}
\vspace{\innerheadskip}
\hbox to \textwidth{\bfseries\normalsize
\underbar{CHAPTER}\hfil\underbar{PAGE}}}}
% \pagestyle{continued}
\table@of@cont
\newpage
}
\def\table@of@cont{%
\begin{singlespace}
\thispagestyle{pageonbottom}
\@makeschapterhead{TABLE OF CONTENTS}
\par
\hbox to \textwidth{\bfseries\underbar{CHAPTER}
\hfil\underbar{PAGE}}
\@starttoc{toc}
\end{singlespace}}