%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Main File %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% This is the main file of your report. It serves as the starting point and controls the overall structure of your document. Unless you want to add or remove a section, there is usually no need to modify this file.
% Customize the content of the main file by including the necessary sections using the \input command. Each section has its own file, which contains the specific content for that section.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[10pt]{article}
\input{preamble}
% Include the preamble file, which contains the necessary packages and settings for customizing the document layout and formatting.
\begin{document}
\input{titlepage}
% Include the titlepage file, which contains the code for the title page of your project.
\pagenumbering{roman}
% Set the page numbering to lowercase Roman numerals for the preliminary sections.
\phantomsection
\input{Preliminary Files/approval}
\clearpage
% Include the approval section.
\phantomsection
\input{Preliminary Files/declaration}
\clearpage
% Include the declaration section.
\phantomsection
\input{Preliminary Files/work-term}
\clearpage
% Include the work term section.
\phantomsection
\input{Preliminary Files/abstract}
\clearpage
% Include the abstract section.
\phantomsection
\input{Preliminary Files/acknowledgements}
\clearpage
% Include the acknowledgements section.
\normalsize
\tableofcontents
\clearpage
% Include the table of contents, which lists the sections and subsections of your project.
\phantomsection
\listoftables
\clearpage
% Include the list of tables, which lists all the tables in your project.
\phantomsection
\listoffigures
\clearpage
% Include the list of figures, which lists all the figures in your project.
\pagenumbering{arabic}
% Set the page numbering to Arabic numerals for the main sections.
\input{Section Files/executive-summary}
\clearpage
% Include the executive summary section.
\input{Section Files/introduction}
\clearpage
% Include the introduction section.
\input{Section Files/company-context}
\clearpage
% Include the company context section.
\input{Section Files/internship-description}
\clearpage
% Include the internship description sections.
\input{Section Files/literature-review}
\clearpage
% Include the literature review section.
\input{Section Files/methodology}
\clearpage
% Include the methodology section.
\input{Section Files/results}
\clearpage
% Include the results section, which presents the findings and results of your project.
\input{Section Files/recommendations}
\clearpage
% Include the recommendations section0
\input{Section Files/conclusion}
\clearpage
% Include the conclusion section, which brings everything together and summarizes the main points and findings of your project.
\input{Section Files/references}
\clearpage
% Include the references section, which lists all the references cited in your project.
\input{Section Files/appendix}
\clearpage
% Include the appendix, which contains additional materials relevant to your project, such as company-specific data, market data, or other supplementary information.
\end{document}