Page Layout ⇒ Page numbers on all pages
-
- Posts: 1
- Joined: Mon Jun 01, 2009 11:14 pm
Page numbers on all pages
i have written my entire thesis in latex. I am new to latex and so far have been able to figure stuff out. But there is one last problem.
My university wants pagenumbers displayed on all pages. I am using the "thesis" document class, for which there isnt much online support available. I am using fancy header to diplay the page number. This class doesnt display pagenumbers on starting page of a chapters.
Using \thispagestyle{plain} on the respective pages doesnt work either.
I need to get around this somehow. Any suggestion? I can also manually put in the page numbers, but dont kow how to display it at the right place.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Page numbers on all pages
For plain style to put page numbers, you have to redefine \fancypagestyle{plain}. Try this :maheshravi wrote: Using \thispagestyle{plain} on the respective pages doesnt work either.
Code: Select all
\fancypagestyle{plain}{%
\fancyhf{} % clear all header fields
\fancyfoot[CO,CE]{\arabic{page}}
}
OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim