The IEEEtran document class is hiding page numbers from my document! Is it possible to force page numbers to appear in the document?
EDIT: Sorry I should have mentioned that I am using conference mode!
The IEEEtran document class is hiding page numbers from my document! Is it possible to force page numbers to appear in the document?
EDIT: Sorry I should have mentioned that I am using conference mode!
Put this right after \maketitle:
\thispagestyle{plain}
\pagestyle{plain}
\maketitle, include \g@addto@macro\maketitle{\thispagestyle{plain}} between \makeatletter ... \makeatother. This is just the easiest, even though there are other page styles.
– Werner
Apr 22 '12 at 05:03
For bare_journal_comsoc.tex with IEEEtran.cls, the following works.
Put this after \maketitle
\thispagestyle{empty} %--to make title page number less
\pagestyle{empty} % -- to make other pages number less.
If you put
\thispagestyle{plain}
\pagestyle{plain}
then, numbers are still coming but at the center of the footer as in IEEE published papers.