After set \pagestyle{empty}, all page numbers for other pages are gone except for the first page. It seems that \maketitle create the number in the first page as follows. How can I turn off the page number for the first page while still keeping the title? Thanks
Code: Select all
Code, edit and compile here:
\documentclass[twoside,twocolumn]{article}\title{Title: bla bla bla}\begin{document}\maketitle\pagestyle{empty}\section{INTRODUCTION}bla bla.....\end{document}