How to set the right footer of the ToC to empty?
I've tried this way, but it hasn't resolve the issue :
\documentclass[12pt,english]{report}
\usepackage{fancyhdr}
\pagestyle{fancy}
\makeatletter
\def\@makeschapterhead#1{%
\vspace*{10\p@}%
{\parindent \z@
{\raggedleft \reset@font
\scshape \vphantom{\@chapapp{} \thechapter}
\par\nobreak}%
\par\nobreak
\vspace*{30\p@}
\interlinepenalty\@M
\usefont{OT1}{ptm}{b}{n}
{\raggedright \Huge #1}%
\par\nobreak
\par\nobreak
\vskip 45\p@
}}
\makeatother
\rfoot{\thepage}
\begin{document}
\thispagestyle{empty}\tableofcontents{}
\thispagestyle{empty}\listoffigures
\thispagestyle{empty}\listoftables
\end{document}
Any brilliant idea, please?
@in document commands without setting the appropriate catcodes. See What do\makeatletterand\makeatotherdo? – Werner May 03 '14 at 16:26\pagenumbering{gobble}\tableofcontents \listoffigures ... \pagenumbering{arabic} ...would help? I'm not 100% sure what exactly you're after. – yo' May 03 '14 at 16:26