% Main Thesis File: This is the main file and it connects all the different parts of the thesis and compiles it into a single outcome file
\documentclass[12pt,oneside]{report}
% NOTE: This document is designed to be compiled with XeLaTeX due to the use of fontspec and Arabic typesetting
% Packages
\usepackage{graphicx}
\usepackage{geometry}
\usepackage{setspace}
\usepackage{indentfirst}
\usepackage{caption}
\usepackage{float}
\usepackage{tocloft}
\usepackage{array}
\usepackage{ragged2e}
\usepackage{titlesec}
\usepackage[hidelinks]{hyperref}
\usepackage{tabularx}
\usepackage{longtable}
\usepackage{cite}
\usepackage{microtype}
\usepackage{fancyhdr}
\usepackage{fontspec}
\usepackage{polyglossia}
\usepackage{newtxtext,newtxmath}
% Page layout
\geometry{a4paper, left=3cm, right=2.5cm, top=2.5cm, bottom=2.5cm}
\setstretch{1.15}
% TOC depth
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
% TOC chapter numbering format
\renewcommand{\cftchappresnum}{Chapter~}
\renewcommand{\cftchapaftersnum}{\space}
\settowidth{\cftchapnumwidth}{Chapter~XX\quad}
% Page style
\pagestyle{fancy}
\fancyhf{}
\fancyfoot[C]{\thepage}
\renewcommand{\headrulewidth}{0pt}
% Chapter formatting
\titleformat{name=\chapter,numberless}[display]
{\normalfont\bfseries\fontsize{14pt}{16pt}\selectfont}
{}
{0pt}
{\centering}
\titleformat{\section}
{\normalfont\bfseries\fontsize{12pt}{14pt}\selectfont}
{\thesection}{1em}{}
\titleformat{\subsection}
{\normalfont\bfseries\fontsize{12pt}{14pt}\selectfont}
{\thesubsection}{1em}{}
\titleformat{\subsubsection}
{\normalfont\bfseries\fontsize{12pt}{14pt}\selectfont}
{\thesubsubsection}{1em}{}
% Languages
\setmainlanguage{english}
\setotherlanguage{arabic}
\newfontfamily\arabicfont[
Script=Arabic,
Path=Fonts/,
Extension=.ttf,
UprightFont=MAJALLA,
BoldFont=MAJALLAB
]{}
\newcommand{\MAJALLA}{\arabicfont}
% Font styles
\newcommand{\TitleFont}{
\fontsize{20pt}{22pt}\selectfont\bfseries
}
\newcommand{\HeadingFont}{
\fontsize{16pt}{18pt}\selectfont\bfseries
}
\newcommand{\SubHeadingFont}{
\fontsize{14pt}{16pt}\selectfont\bfseries
}
\newcommand{\BodyFont}{
\fontsize{12pt}{14pt}\selectfont\bfseries
}
\newcommand{\ArabicTitleFont}{
\arabicfont\fontsize{20pt}{22pt}\selectfont\bfseries
}
\newcommand{\ArabicBodyFont}{
\arabicfont\fontsize{12pt}{14pt}\selectfont
}
\begin{document}
\include{Front_Matter}
\include{Lists}
\include{Chapters/Introduction}
\include{Chapters/Literature_Review}
\include{Chapters/Research_Methodology}
\include{Chapters/Results_Discussion}
\include{Chapters/Conclusion}
\include{References}
\include{Appendices}
\include{Back_Matter}
\end{document}