I'm using an external .cls file, which is based on the report.cls template. I need to change the formatting of the top-level parts (i.e. \part objects) in the table of contents, and on the \part pages. In particular,
- On the table of contents, I need the
\partentries to be centered, all-caps, no page number, and start with the word "PART" e.g. "PART I: FOO," "PART II: BAR" - On the
\partpages within the document, I need to turn off page numbering in the footer.
Currently, in the .cls file, the \tableofcontents command is:
\renewcommand{\tableofcontents}{%
\if@twocolumn
\@restonecoltrue\onecolumn
\else
\@restonecolfalse
\fi
\normalsize
\chapter*{\contentsname
\@mkboth{%
\MakeUppercase\contentsname}{\MakeUppercase\contentsname}}%
{\hfill \textbf{Page}\par}%
{\hyphenpenalty=\umthesis@listhyphenpenalty\@starttoc{toc}}%
\if@restonecol\twocolumn\fi
}
As for \part formatting, I don't see any commands in the .cls file for it.
I think these are straightforward changes for you TeX experts out there, but as a noob with a deadline, I'm not making much headway. Any help appreciated!
\@part– egreg Dec 14 '11 at 18:26\@partin the .cls file either, thanks. – limist Dec 14 '11 at 18:32\umthesisthat made me think is from there. You need to give a link. – Yiannis Lazarides Dec 14 '11 at 18:48