How to eliminate PAGE NUMBERS
In order to prevent page numbers from appearing on the pages of your LaTeX
document, you should include the line
\usepackage{nopageno}
after your \documentclass line.
This will prevent page numbers from being printed on all of the pages.
If you wish to just prevent page numbers from printing on one page, you
should put the line
\thispagestyle{empty}
in the text of the page you want to be printed without a page number.
|