[Tex/LaTex] How to remove page numbers using revtex

page-numberingrevtex

I am writing my physics thesis in LaTex for the first time, using RevTex (APS) style formatting (code below). Unfortunately, the department is compiling all of the majors' papers into a single booklet. Therefore, they want us all to remove the page numbers from our individual documents. How do I do this, using the document class template they provided (shown below)?

\documentclass[aps,prd,floatfix,nofootinbib,twocolumn]{revtex4-1}

Thanks very much!

Best Answer

One way is to add \pagestyle{empty}.

\documentclass[aps,prd,floatfix,nofootinbib,twocolumn]{revtex4-1}
\pagestyle{empty}

\begin{document}
    test
\end{document}
Related Question