1

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?

Johannes_B
  • 24,235
  • 10
  • 93
  • 248
user70214
  • 337

0 Answers0