68

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!

Sandro
  • 783
  • 1
  • 5
  • 5

3 Answers3

87

Put this right after \maketitle:

\thispagestyle{plain}
\pagestyle{plain}
andrew
  • 2,221
5

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.

Bobyandbob
  • 4,899
2

If possible, avoiding the conference document-class option (just as another member commented above) and replacing it will comsoc will start generating page numbers.

ebosi
  • 11,692
mnicneo
  • 21