tags:

views:

493

answers:

2

I am writing a 100+ page thesis using latex, with the document style "book".

Right now the page number is bottom centered on the first page of a chapter, on the top outer margin on the subsequent pages of a chapter.

I want the page numbers to always be bottom centered on each page, for roman as well as arabic page numbers. How I can I do this?

+5  A: 

Take a look on the fancyheader package.

You will probably have to do something like

\documentclass{book}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{}
\chead{}
\rhead{}
\lfoot{}
\cfoot{\thepage}
\rfoot{}
\begin{document}
Your content \ldots
\end{document}
midtiby
A: 

Hi,

Setting the page style can also affect the defaults. For example setting the page style to \pagestyle{empty} will also remove both header and footer information, such as the page numbers in the footer.

The apporach with fancyhdr as mentioned is the way to directly modify these. Another way to clear the header and footer information with that package is \fancyhf{}.

The free online LaTeX wikibook is an excelent resource, here is the link for the page layout page which covers issues such as headers nad footers.

LaTeX Wikibook - Page Layout

Hope that helps,

Jay

Jay