%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
% Official IISER Thiruvananthapuram Thesis/Dissertation Format
% LaTeX Template for Overleaf
%
% Copyright (c) 2022 by Nikhil Alex Verghese, BS-MS '17, IISER Thiruvananthapuram
%
% 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
%=========================================================================================
\documentclass[12pt]{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 STARTS HERE
%=========================================================================================
\begin{document}
%=========================================================================================
% INTRODUCTORY PAGES
%=========================================================================================
% Custom input fields are marked with [] in the intro sections.
% Rewrite inputs according to capitalisation within brackets (First Letter Capital/ALL UPPERCASE/all small letters).
% Go through each intro page and update all of your personal information accordingly.
% Read all uncommented lines carefully.
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~%
\input{00_Intro_Pages/01_TitlePage}
\input{00_Intro_Pages/02_Declaration}
% Certificate format: choose one
\input{00_Intro_Pages/03a_Certificate} % Standard certificate
% \input{00_Intro_Pages/03b_Certificate} % Fancy certificate (optional)
\input{00_Intro_Pages/04_Acknowledgements}
\input{00_Intro_Pages/05_Abstract}
\input{00_Intro_Pages/06_ToC,LoF,LoT}
\input{00_Intro_Pages/07_Abbrev,Const,Symbols}
% Set main page numbering
\pagenumbering{arabic}
\setcounter{page}{1}
%=========================================================================================
% MAIN CHAPTERS
%=========================================================================================
\input{Chapters/01_Introduction}
% \input{Chapters/02_Chapter2}
% \input{Chapters/03_Chapter3}
% Note:
% - Break chapters into separate .tex files for easier navigation.
% - 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}