如何删除特定页面的页眉

如何删除特定页面的页眉

我为论文的每一章都写了一个提要部分,但我注意到一个小问题。由于提要部分来自\chapter的页眉来自上一章的最后一节。有没有简单的解决方法,可以只删除此页面的页眉,或者用类似这样的内容替换页眉Synopsis: Chapter X

在此处输入图片描述

我在下面附上了一些代码。

\documentclass{amsbook}


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

\begin{document}


\blinddocument

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

答案1

尝试以下方法:

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

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

答案2

作为一种风格上的替代,而不是一种做你当前需要的技术手段,你可能需要考虑这一点:

\chapter{...}
<<synopsis>>
\clearpage (or other form of separation, such as a horizontal rule,
or putting the synopsis in a box, or making the synopsis the first \section)
<<chapter content>>

我提出这个建议的理由是,它把概要里面章节上下文,以便读者看到章节标题阅读概要。

显然,一个人的里程可能会有所不同......

相关内容