如何在部分的开头设置空页面样式?

如何在部分的开头设置空页面样式?

我正在创建一个文档,该文档被分成了几个部分。我想要做的是,\pagestyle在部分的开头留一个空白。

我的代码是

\documentclass[11pt]{book}
\usepackage{lipsum}

\begin{document}
 \pagestyle{empty}
 \part{First part}
 \chapter{First Chapter}
 \lipsum[1]
 \chapter{Second Chapter}
 \lipsum[2]
 \part{Second part}
 \chapter{Third Chapter}
 \lipsum[3]
 \chapter{Fourth Chapter}
 \lipsum[4]
\end{document}

我的输出是

在此处输入图片描述

如何避免在该部分的第一页和第二页(即该部分标题后的白页)有页码?

答案1

我不知道文档类的答案book,但这memoir很容易:

\aliaspagestyle{part}{empty}

考虑一下memoir旨在取代和的,book同时提供更多的权力来对其进行调整。reportarticle

编辑:如果你仍然希望使用该book课程,请输入

\makeatletter
\renewcommand{\part}{%
  \if@openright
    \cleardoublepage
  \else
    \clearpage
  \fi%
  \thispagestyle{empty}%
  \if@twocolumn
    \onecolumn
    \@tempswatrue
  \else
    \@tempswafalse
  \fi%
  \null\vfil%
  \secdef\@part\@spart%
}
\makeatother

在你的序言中。

相关内容