I would like to have a page number on the first page of each of my 10 chapters.
What is the best way to make this happen?
My current page style is plain. Should I use a different style or perhaps edit the 'plain' style?
Here is my current setup:
Code: Select all
\documentclass[a4paper,12pt]{thesis}
\usepackage{graphicx,latexsym}
\usepackage{amssymb,amsthm,amsmath}
\usepackage{longtable,booktabs}
\usepackage{setspace}
\onehalfspacing
\usepackage{url}
\usepackage{natbib}
\usepackage[pdftex,bookmarks=true]{hyperref}
\hypersetup{pdfauthor={**********},pdftitle={Ph.D Thesis},colorlinks=false,bookmarksopen=false}
\usepackage{nomencl}
\usepackage{textcomp}
\usepackage{subfig}
\usepackage[final]{pdfpages}
\let\abbrev\nomenclature
\renewcommand{\nomname}{List of Abbreviations}
\setlength{\nomlabelwidth}{.25\hsize}
\renewcommand{\nomlabel}[1]{#1 \dotfill}
\setlength{\nomitemsep}{-\parsep}
\makenomenclature
\newcommand{\Listofabbrev}{\printnomenclature\newpage}
\begin{document}
\begin{titlepage}
***********************
\end{titlepage}
\frontmatter
\pagestyle{empty}
\chapter*{}
\input{01_declaration}
\chapter*{Abstract}
\input{02_abstract}
\tableofcontents
\listoftables
\listoffigures
\Listofabbrev
\mainmatter
\pagestyle{plain}
\onehalfspacing
\chapter{*****************}
\input{**************}
geonaut