\pagestyle{empty}
on first page in LaTeX\
pagestyle{empty}
, but the first page is numbered
anyway, you are probably using the \
maketitle
command too. The
behaviour is not a bug but a feature. The standard LaTeX classes are
written so that initial pages (pages containing a \
maketitle
,
\
part
, or \
chapter
) have a different page style from the rest
of the document; to achieve this, 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.
\fancypagestyle{plain}{% \fancyhf{}% \renewcommand{\headrulewidth}{0pt}% \renewcommand{\footrulewidth}{0pt}% }and the “
empty
” page style (invoked by \
chapter
commands and title pages) will have no header or footer.
This question on the Web: http://www.tex.ac.uk/cgi-bin/texfaq2html?label=ps@empty