[Tex/LaTex] chapter number and chapter title page before every chapter, and every chapter with no page number

chapters

How can we insert CHAPTER NUMBER CHAPTER TITLE before every chapters so that there will be no page number on that page but page number will continue in the chapters. I am using report class file .

Best Answer

Patch \chapter to call \thispagestyle{empty} instead of \thispagestyle{plain}.

\documentclass{report}
\usepackage{etoolbox}

\patchcmd{\chapter}{\thispagestyle{plain}}{\thispagestyle{empty}}{}{}

% the next two lines are just for the example
\usepackage{lipsum} % dummy text
\usepackage[a6paper]{geometry} % small page

\begin{document}

\chapter{Title}

\lipsum[1-3]

\end{document}

enter image description here