Hi all,
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.
Page Layout ⇒ Page numbers on all pages
NEW: TikZ book now 40% off at Amazon.com for a short time.
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