Page Layout ⇒ intrusive page number on Part page
intrusive page number on Part page
\documentclass[12pt]{book}
\begin{document}
\mainmatter
\chapter{first}
Some text.
\newpage\thispagestyle{empty}
\thispagestyle{empty}
\part{one}
\chapter{2nd}
Some more text.
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
intrusive page number on Part page
You can find the definition of the
\part
command in the book.cls
file.There the page style is set to
plain
. A possible solution would be to load the 
Code: Select all
\patchcmd{\part}{plain}{empty}{}{}
intrusive page number on Part page
scrbook
:
Code: Select all
\documentclass[12pt,emulatestandardclasses]{scrbook}
% You may use:
\RedeclareSectionCommand[pagestyle=empty]{part}
% or:
\renewcommand*{\partpagestyle}{empty}
% or both. ;-)
\begin{document}
\mainmatter
\chapter{first}
Some text.
\part{one}
\chapter{2nd}
Some more text.
\end{document}
emulatestandardclasses
has only been set to make the example more comparable with the original one. I would not recommend to use it, but use only those changes to the lookalike of the standard classes, you really want. For example, most users do not want headings and page numbers at interleaf pages like page 2 of the example but maybe the headings of the standard classes and maybe the letter paper size. So
Code: Select all
\documentclass[12pt,paper=letter,headings=standardclasses]{scrbook}
% You may use:
\RedeclareSectionCommand[pagestyle=empty]{part}
% or:
\renewcommand*{\partpagestyle}{empty}
% or both. ;-)
\begin{document}
\mainmatter
\chapter{first}
Some text.
\part{one}
\chapter{2nd}
Some more text.
\end{document}
headings=standardclasses
to see the headings default of KOMA-Script classes.See the manual (either the English one or the German one) for more information about the shown commands and options and the lots of features of the KOMA-Script classes.