I have two issues in my thesis.
- At the start of each Chapter, page number should be displayed.
- The "REFERENCES" top margin should be 1.5in, which here with me is 2in now (as all chapter title have 2in).
Code: Select all
\documentclass[12pt]{book}
\pagestyle{plain}
\usepackage{hyperref}
\usepackage{titlesec}
\setcounter{secnumdepth}{3} % for adding subsubsection number
\setcounter{tocdepth}{3} % for table of contents
\usepackage{amsmath, amssymb, amsthm}
\usepackage{multirow}
\usepackage{color, colortbl}
\usepackage{tikz}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{epstopdf}
\usepackage[none]{hyphenat}
\usepackage{caption}
\setlength{\captionmargin}{14pt}
\usepackage{mathptmx}%\renewcommand\rmdefault{stb}
{geometry}
\usepackage[a4paper]{geometry}
\geometry{left = 1.35in, right = 0.85in, top= 0.85in, bottom= 1.25in}
\usepackage{setspace}
\renewcommand{\baselinestretch}{1.5}
\tikzstyle{line} = [draw, -latex', auto]
\usetikzlibrary{shapes,arrows}
\usetikzlibrary{calc,trees,positioning,arrows,chains,shapes.geometric,%
decorations.pathreplacing,decorations.pathmorphing,shapes,%
matrix,shapes.symbols}
%\usepackage{graphics}
\usepackage{epsf,graphicx}
\renewcommand{\bibname}{References}
\titleformat{\chapter}[display]
{\textsc \normalfont \center }{ \MakeUppercase {\chaptertitlename}\ \thechapter}{5pt}{\center \MakeUppercase}
\titlespacing*{\chapter}{0pt}{20pt}{36pt}
\usepackage{titlesec}
\titleformat{\section}{\large\bfseries}{\thesection}{1em}{}
\tolerance =1
\emergencystretch =\maxdimen
\hyphenpenalty = 1000
\hbadness = 10000
\begin{document}
\pagenumbering{roman}
\include{Title}
\include{Abstract}
\include{Acknowledgement}
\tableofcontents
\listoftables
\listoffigures
\renewcommand{\contentsname}{TABLE OF CONTENTS }
\renewcommand{\listfigurename}{\centering \normalsize LIST OF FIGURES}
\renewcommand{\listtablename}{\centering \normalsize LIST OF TABLES }
\chapter*{LIST OF ABBREVIATIONS}
\addcontentsline{toc}{section}{LIST OF ABBREVIATIONS}
\clearpage
\pagenumbering{arabic}
\include{Chapter1}
\include{Chapter2}
\include{Chapter3}
\include{Chapter4}
\include{Chapter5}
\bibliographystyle{ieeetr}
\bibliography{myref}
\include{Publications}
\end{document}