I am having trouble getting all of my page numbers to show up when including multiple documents. I have managed to get the numbering correct in the items of the table of contents, but in the pages are only numbered on the first page of each major part. For instance, the first page # of the abstract shows up, but not the second; the the first page # of the table of contents shows up, but not the second or third; the first page of each chapter shows up, but not the rest of the pages. This continues through the document until it ends.
Code: Select all
\documentclass[12pt]{report}
\linespread{2}
\usepackage[top=1in, bottom=1.1in, left=1.5in, right=1in]{geometry}
\usepackage{lineno}
\usepackage{pageno}
\usepackage{graphicx}
\usepackage{subfig}
\usepackage[subfigure]{tocloft}
\usepackage{caption}
\usepackage[latin1]{inputenc}
\usepackage{rotating}
\usepackage{setspace}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{wasysym}
\usepackage{url}
\usepackage{array}
\usepackage{booktabs}
\usepackage{natbib}
\usepackage{fancyhdr}
\renewcommand{\cftchapfont}{Chapter }
\renewcommand{\familydefault}{\sfdefault}
\begin{document}
\include{signature}
\include{title}
\include{copyright}
\cleardoublepage
\addcontentsline{toc}{section}{Acknowledgements}
\include{acknowledgements}
\addcontentsline{toc}{section}{Dedication}
\include{dedication}
\addcontentsline{toc}{section}{Abstract}
\include{abstract}
\cleardoublepage
\pagenumbering{roman}
\setcounter{page}{5}
\tableofcontents
\newpage
\listoftables
\newpage
\listoffigures
\newpage
\cleardoublepage
\include{ch1}
\include{ch2}
\include{ch3}
\include{ch4}
\newpage
\nolinenumbers
\addcontentsline{toc}{section}{References}
\renewcommand{\bibname}{References}
\bibliographystyle{elsart-harv}
\bibliography{litreview}
\end{document}
Thank you and please let me know if I need to post more information to find a solution.