\pagestyle{empty}
on first page in LaTeX
If you use \pagestyle{empty}
, but the first page is numbered anyway,
you are probably using the \maketitle
command too. This is not a bug
but a feature! The standard LaTeX styles are written so that
initial pages (pages containing a \maketitle
, \part
, or
\chapter
) have a different page style from the rest of the document;
Hence, the commands internally issue \thispagestyle{plain}
. This is
usually not acceptable behaviour if the surrounding page style is
`empty'.
Possible workarounds include:
\thispagestyle{empty}
immediately after the \maketitle
command, with no blank line between them.