Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Page numbers in LLNCS style

Tags:

latex

I'm using the LLNCS layout for a latex paper. The page numbers are suppressed by default. How can I turn them on for drafts?

like image 478
nes1983 Avatar asked Sep 02 '09 10:09

nes1983


1 Answers

I took a quick look at the .cls file for this layout. it calls all the page styles as "empty"

you may want to try

\pagestyle{plain}

or

\pagestyle{fancy}

in your preamble. I didn't check to see if that worked, but the .cls loads a two sided article class...

like image 162
Mica Avatar answered Oct 14 '22 22:10

Mica