%%%%% This is an official Template and not designed by the University of Kerala
%%% Wael Hadi, PhD Biotechnology, designed this to help the students at the University of Kerala have a draft template to optimise according to their needs
%% Wael Hadi
% gustwe@gmail.com
%% Feb 2024
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[a4paper,oneside,12pt]{report}
%\documentclass[11pt,a4paper,twoside,openright]{report}
\usepackage{textmatter/mypacks}%% You can add your packages here
%\usepackage[backend=biber,style=alphabetic]{biblatex}
\author{Your name}
%%%%%%%%%%%%%%%%%Acronayms
%\input{acronym}
%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% FRONT Matter/Preliminary pages
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{frontmatter/titlepage} % Title Page
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\pagenumbering{Roman}
%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{frontmatter/declaration} % Declaration
%%%%%%%%%%%%%%%%%%%%%% Letters from the guides
\newpage
%%%%%%%%%%%%%%%%%%%%%%%%%%%
\input{frontmatter/Acknowledgment} %Acknowledgment
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newpage
\input{frontmatter/dedication}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Table of contents
\hypersetup{hidelinks}
\tableofcontents %Table of contents
\listoffigures % Table of Figures
\listoftables % List of Tables
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% List of Abbreviations
\input{frontmatter/Abbreviations} % you can add manually and edit
%%%%%%% Add abbreviation page
\pagebreak
%%%%%%%%%%%%%%%%%%%%%%%%%%% Abstract
\input{frontmatter/abstract}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% End of Preliminary documents
\pagenumbering{arabic} % Start Arabic Numbering
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Delete it after reading the instructions.
\chapter{How to use this template} %%%% Delete when you write your thesis
\section{frontmatter}
This includes the file separately to make the editing easy for each file and their order:
1. title page
2. deceleration
3. Acknowledgement
3. Dedication
The table of contents, figures, and tables will list automatically, but you should write the caption for each one to make this TOC work.
\section{textmatter}
All the chapters are included here in the chapter folder. You can add as many chapters as you need. See the include command below.
\section{Packages}
textmatter/mypacks includes all the packages needed. You can add, delete or modify as your requirements
\section{Figures}
Inside text or images, you can make folder for each chapter to make easy to insert or edit them
\section{Examples}
\subsection{Image with normal caption}
\begin{figure}
\centering
\includegraphics[width=1\linewidth]{textmatter//images//ch1/uok.jpg}
\caption{The main building; University of Kerala main entrance photo, Palayam, Thiruvananthapuram, Kerala, India}
\label{fig:enter-label}
\end{figure}
\subsection{Image with short caption}
\begin{figure}
\centering
\includegraphics[width=1\linewidth]{textmatter//images//ch1/uok.jpg}
\caption[University of Kerala, Palayam]{The main building; University of Kerala main entrance photo, Palayam, Thiruvananthapuram, Kerala, India}
\label{fig:enter-label}
\end{figure}
\subsection{Table}
You are advised to use this site to formulate all of your tables:
www.latex-tables.com
For citation, you can change APA style and add the references to refs.bib \cite{lees2015overleaf}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Thesis Contents
\include{textmatter/chapters/ch1}
\include{textmatter/chapters/ch2}
%%%%%%%%%%%%%%%%%
\bibliographystyle{abbrv}
\bibliography{refs}
\appendix
\include{appendix1}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% End of Chapter 1
\end{document}