[Tex/LaTex] How to remove header on a certain page

header-footer

I've written a synopsis section for each chapter of my thesis, and I've noticed a minor issue. Since the synopsis section comes before the \chapter its header is from the last section of the previous chapter. Is there a simple fix to either remove the header for this page only or replace the header with something like Synopsis: Chapter X?

enter image description here

I've include some code below.

\documentclass{amsbook}


\usepackage[english]{babel}
\usepackage{blindtext}

\begin{document}


\blinddocument

\newpage
\begin{center} 
{\bf Synopsis: Chapter 2} 
\end{center}
\blindtext
\end{document}

Best Answer

try it this way:

\documentclass{amsbook}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\blinddocument

\clearpage
\thispagestyle{empty}
\section*{Synopsis: Chapter 2} 
\blindtext
\clearpage
\blindtext
\end{document}