I am writing a thesis and my table of contents title, must say "TABLE OF CONTENTS" on page 1, and "TABLE OF CONTENTS (continued)" for every page thereafter.
After thinking about this for the past 12 hours, I had the idea to use 'fancyhdr', since it intrinsically puts headings on the second page. It was my hope that I could put a centered heading in the place of where I would want "TABLE OF CONTENTS (continued)" to be.
However, the way I have it right now, fancyhdr does not print footers or headers on the table of contents page. Is it possible to change this? code below:
Code: Select all
\usepackage{fancyhdr}
\setlength{\headheight}{15pt} %Required by fancyhdr
\renewcommand{\headrulewidth}{0pt}%Get rid of the horizontal line up top
\renewcommand{\refname}{ }%Make the title for the reference section blank... because the '\section' puts the title 'REFERENCES' in already.
\doublespacing
\begin{document}
\pagestyle{empty}
\pagenumbering{roman} %The acknowledgments and table of contents must be in roman numerals
\rhead{Right top}
\chead{Middle top}
\lhead{Left top}
\rfoot{Right bottom}
\cfoot{\thepage}
\lfoot{Left bottom}
\tableofcontents