我正在创建一个文档,该文档被分成了几个部分。我想要做的是,\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
同时提供更多的权力来对其进行调整。report
article
编辑:如果你仍然希望使用该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
在你的序言中。