Using
\documentclass[a4paper,12pt]{report}
\makeatletter
\let\latexps@plain\ps@plain % Store definition
\let\ps@plain\ps@empty % Use empty pagestyle (ps)
\makeatother
\begin{document}
\tableofcontents
\listoffigures
\listoftables
\clearpage
\makeatletter
\let\ps@plain\latexps@plain % restore pagestyle 'plain'
\makeatother
\chapter{First}
\end{document}
I would like to restore pagestyle 'headings'. I have tried
\clearpage
\makeatletter
\let\ps@headings\latexps@headings
\makeatother
that does not work (still 'empty'), then using just
\pagestyle{headings}
works, but it does not work on every "first chapter page" that is still without headings , numbering ("empty"). Other pages are ok. How to get "headings" to these pages?
\pagestyle{headings}? – Werner Jan 28 '15 at 21:52\let\ps@plain\ps@headings. There are a number of other posts similar to this on the site. They're just mixed in with bizarre titles, and not always easy to find. – Werner Jan 28 '15 at 21:53