ID #1046

How to remove page numbers in the LaTeX documents?

Occasionally you might want to disable the page numbers, and people generally suggest using the following code.

\maketitle
\thispagestyle{empty}

When it is used with some templates/style files, the page numbers may still exist, so add another line to remove page numbers for the whole document.

\maketitle
\thispagestyle{empty}
\pagestyle{empty} 

Tags: style

Related entries:

You can comment this FAQ