I'm desperate with this issue... My document follows the hepthesis class.
I would like to eliminate the bottom page numbering in the first page of toc, lof and lot.
I've tried \thispagestyle{empty} without success !!
Code: Select all
\documentclass[bind,twoside,ams,booktabs,a4paper]{hepthesis}
\begin{document}
\begin{abstract}
\thispagestyle{empty}
This is the abstract.
\end{abstract}
\cleardoublepage
% first page of contents always has page number on bottom
\tableofcontents
\thispagestyle{empty}
\cleardoublepage
\begin{mainmatter}
\pagestyle{fancy}
\pagenumbering{arabic}
\input{chap1}
\input{chap2}
\end{mainmatter}
\listoffigures
\listoftables
\bibliographystyle{unsrt}
\bibliography{biblio}
\end{document}
Cheers,
Sergio