% !TEX program = pdflatex
% =====================================================================
% NISER / HBNI PhD Thesis Template
% Original author: Subhankar Mishra, School of Computer Sciences, NISER
%
% HOW TO USE
% 1. Edit thesis-info.tex with your name, title, school, etc.
% 2. Write your content in chapters/ and sections/.
% 3. Add references to sections/ref.bib and \cite{...} them.
% 4. Compile with pdfLaTeX (the default on Overleaf and locally).
% References use BibTeX, so run: pdflatex -> bibtex -> pdflatex x2,
% or just `latexmk main.tex`. On Overleaf, Recompile does this for you.
% =====================================================================
\documentclass{niserPhD}
% Your thesis details (title, name, school, ...) live here:
\input{thesis-info}
\begin{document}
% ----------------------- Front matter -------------------------------
\pagenumbering{roman}
\pagestyle{plain}
\onehalfspacing
\include{sections/title}
\include{sections/vivavoce}
\include{sections/statement}
\include{sections/declaration}
\include{sections/integrity}
\include{sections/publist}
\include{sections/dedicate}
\include{sections/acknowledgement}
\include{sections/abstract}
\clearpage
\tableofcontents
\include{sections/note} % <-- comment out this line when you are ready
% ----------------------- Main matter --------------------------------
\pagenumbering{arabic}
\pagestyle{thesis} % chapter name in header, page number in footer
\include{sections/summary}
\clearpage
\listoffigures
\clearpage
\listoftables
\clearpage
\doublespacing % HBNI requires double spacing in the chapters
\include{chapters/chap1}
\include{chapters/chap2}
\include{chapters/chap3}
\include{chapters/chap4}
% ----------------------- Back matter --------------------------------
\include{sections/reference}
\include{sections/appendix}
\end{document}