%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
% Official IISER Thiruvananthapuram Thesis/Dissertation Format
% LaTeX Template for Overleaf
%
% Copyright (c) 2022 by Nikhil Alex
%
% Licensed under Creative Commons Attribution–NonCommercial–ShareAlike 4.0
% (CC BY-NC-SA 4.0). More info: https://creativecommons.org/licenses/by-nc-sa/4.0/
%
% Suggestions/Feedback: nikhil.alexv17@alumni.iisertvm.ac.in
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
% Comments like this begin with a % character.
% Ctrl+b for \textbf{bold} and Ctrl+i for \textit{italics}
% Ctrl+/ to comment out lines
%=========================================================================================
% PREAMBLE (PACKAGES AND DOCUMENT CONFIGURATION)
%=========================================================================================
% Rewrite the input fields marked with [] brackets.
% Read all uncommented lines carefully.
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
\documentclass[12pt,twoside,a4paper]{report} % Font size (pt), default paper size a4paper
% Load configuration files
\input{Configuration/Preamble.tex} % Packages, layout, spacing, theorem styles
\input{Configuration/Colours.tex} % Color definitions
\input{Configuration/MathLetters.tex} % Math symbols and alphabet macros
% Document Metadata
\SetThesisTitle{[Project Title]}
\SetThesisAuthor{[Full Name]}
\SetRegNumber{[IMSXXXXX]}
\SetDegree{\msc} % Choose from: \msc, \phd, and \minor
\SetDepartment{[Department]}
\SetProjectSupervisor{[Project Supervisor]}
\SetThesisCommitteeMemberA{[TC Member 1]}
\SetTCMAFacultyPosition{[Faculty Position]}
\SetThesisCommitteeMemberB{[TC Member 2]}
\SetTCMBFacultyPosition{[Faculty Position]}
\SetThesisCommitteeMemberC{[TC Member 3]}
\SetTCMCFacultyPosition{[Faculty Position]}
\SetThesisKeywords{} % Insert abstract keywords
\hypersetup{
pdfauthor={\ThesisAuthor},
pdftitle={\ThesisTitle},
pdfsubject={\ThesisSubject},
pdfkeywords={IISER Thiruvananthapuram, \ThesisKeywords}
}
%=========================================================================================
% DOCUMENT STARTS HERE
%=========================================================================================
\begin{document}
%=========================================================================================
% INTRODUCTORY PAGES
%=========================================================================================
\newgeometry{
inner=45pt,
outer=48pt,
top=1.5in
}
\input{Intro_Pages/01_TitlePage}
\pagenumbering{roman}
\setcounter{page}{3}
\input{Intro_Pages/02_Certificate}
\input{Intro_Pages/03_Declaration}
\input{Intro_Pages/04_Acknowledgements}
\input{Intro_Pages/05_Abstract}
\input{Intro_Pages/06_ToC,LoF,LoT}
\input{Intro_Pages/07_Abbrev,Const,Symbols}
\restoregeometry
% Set main page numbering
\pagenumbering{arabic}
\setcounter{page}{1}
%=========================================================================================
% MAIN CHAPTERS
%=========================================================================================
\input{Chapters/01_Introduction}
% \input{Chapters/02_Chapter2}
% \input{Chapters/03_Chapter3}
% Note:
% Use sections/subsections to structure content within each chapter.
%=========================================================================================
% APPENDICES
%=========================================================================================
\appendix
\appendixpage
\addappheadtotoc
\input{Appendices/A_AppA.tex}
%=========================================================================================
% BIBLIOGRAPHY
%=========================================================================================
\nocite{*} % Include all entries from ref.bib
\printbibliography[heading=bibintoc] % Bibliography in ToC
\end{document}