\documentclass[phd, onehalfspace]{KUThesis}
%%%%% use phd or msc to switch between msc and phd thesis/dissertation
%%%%% onehalfspace and doublespace options are added, singlespace is default
%%%%% proposal option will skip printing of some declarations
%%%%% other options of the report template can be used as well here (page size, font, etc.)
%% Examples %%%%%%%%%%
% \documentclass[phd, proposal]{KUThesis}
% \documentclass[msc, doublespace]{KUThesis}
% \documentclass[msc, onehalfspace, 11pt]{KUThesis}
\usepackage{lipsum}
%% remove this package and lipsum calls in the real document
\title{PhD Dissertation or MSc Thesis template using \LaTeX\ style designed for Khalifa University}
\author{Student Name}
% \title[Dissertation/Thesis Template]{PhD Dissertation or MSc Thesis template using \LaTeX\ style designed for Khalifa University}
% \author[St.Name]{Student Name}
% PDF info uses short author and name, if defined. Otherwise long name and title will be used
\department{XXYYZZ}
% for example, Industrial and System Engineering
\studyprogram{prg in Engineering}
% for example, PhD in Engineering or Engineering Systems and Management
%%%% left column of RCS list
\addrscmember{Dr. XYZ}{Main adviser}{Khalifa University}
\addrscmember{Dr. XYZ}{Co-adviser}{Khalifa University}
\addrscmember{Dr. XYZ}{Co-adviser}{Khalifa University}
\addrscmember{}{}{}
%%%% right column of RCS list
\addrscmember{Dr. XYZ}{External Member}{XXX YYY ZZZ}
\addrscmember{Dr. XYZ}{RSC Member}{Khalifa University}
\addrscmember{Dr. XYZ}{RSC Member}{Khalifa University}
\addrscmember{}{}{}
%%%%% Date
\date{November 2022} % can be hardcoded if needed
% \date{\currentdate}
%%%%% Abstract
\abstract{abstract text .... \\ \lipsum[2-4]} %\lipsum is to create some text
%%%% Thesis Index Terms
\addidxtrm{Term 1}
\addidxtrm{Term 2}
\addidxtrm{Term 3}
\addidxtrm{Term 4}
\addidxtrm{Term 5}
\addidxtrm{Term 6}
\addidxtrm{Term 7}
%%% up to 5-7 terms are recommended
%%%%% Acknowledgment
%%% 'proposal' will not include the acknowledgment, but some text need to be defined
\acknowledgment{acknowledgment text .... \\ \lipsum[1-2]} %\lipsum is to create some text
% %Toc
% \usepackage{titletoc}
% \titlecontents{chapter}
% [0pt] % Left margin
% {\addvspace{1em}} % Space before chapter title
% {\bfseries\color{blue}{\chaptername}\ \thecontentslabel.\quad} % Chapter label
% {\bfseries} % Chapter title
% {\hfill\bfseries\contentspage\vspace{0.5em}}
%%%%% Start the document
\begin{document}
\include{Chapters/Nomenclature}
\makecoverpages
\makefrontpages
\include{Chapters/Chapter-1}
\include{Chapters/Chapter-2}
\include{Chapters/Chapter-3}
\include{Chapters/Conclusion}
% Bibliography
% If done using the BibTeX program, use
%\bibliographystyle{plainnat}
\bibliographystyle{ieeetr}
% sorted alphabetically, labeled with numbers (plain), alpha for letters
%\bibliography{bibliography} % names file bibliography.bib as my bibliography file
\bibliography{bibliography.bib}
\addcontentsline{toc}{chapter}{Bibliography}
%----------------------------------------------------------------------
% END MATERIAL
%----------------------------------------------------------------------
% Appendices
\appendix
\include{Chapters/Appendix.tex}
% Index
% Put a \makeindex command in the Preamble if you use MakeIndex program
% and put
\printindex % here
%----------------------------------------------------------------------
\end{document}
%======================================================================