I wanted to have all page numbering at right bottom of each page. So I used package fancyhdr.
I put this at the preamble
%customize page numbering on right hand side
\fancyhf{} %clear all header and footer fields
\fancyfoot[RO]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
It works OK, especially at first page of every chapters with \thispagestyle{fancy} where I put after \chapter{}.
but it doesn't work at these pages below, table of contents, figures, tables and nomenclature. They are appear bottom of page at the middle. Am I missing something here?
%Table of content
\newpage
\thispagestyle{fancy}
\renewcommand\contentsname{CONTENTS}
\tableofcontents
\addcontentsline{toc}{chapter}{CONTENTS}
%List of tables
\newpage
\thispagestyle{fancy}
\renewcommand\listtablename{LIST OF TABLES}
\listoftables
\addcontentsline{toc}{chapter}{LIST OF TABLES}
%List of figures
\newpage
\thispagestyle{fancy}
\renewcommand\listfigurename{LIST OF FIGURES}
\listoffigures
\addcontentsline{toc}{chapter}{LIST OF FIGURES}
%Nomenclature
\newpage
\thispagestyle{fancy}
\addcontentsline{toc}{chapter}{NOMENCLATURE}
\printnomenclature[3cm]

\documentclassand the appropriate packages so that those trying to help don't have to recreate it. – Peter Grill Jul 18 '12 at 5:05