% This is main.tex, uses LLNCS macro package for Springer Computer Science proceedings;
% Version 2.21 of 2022/01/12
%This document contains the structure of the thesis. Here, you can change the section titles and the order of the different sections. The content of the thesis should be added to the different .tex files in the 'Content' folder. References should be added to 'mybibliography.bib'.
%
\documentclass[12pt]{llncs}
%
\usepackage[T1]{fontenc}
% T1 fonts will be used to generate the final print and online PDFs,
% so please use T1 fonts in your manuscript whenever possible.
% Other font encondings may result in incorrect characters.
%
\usepackage{graphicx}
% Used for displaying a sample figure. If possible, figure files should
% be included in EPS format.
%
% If you use the hyperref package, please uncomment the following two lines
% to display URLs in blue roman font according to Springer's eBook style:
%\usepackage{color}
%\renewcommand\UrlFont{\color{blue}\rmfamily}
%
\usepackage[percent]{overpic}
% Used for overlaying pictures on title page.
\usepackage[dvipsnames]{xcolor}
% Used to define new colors
\newenvironment{acknowledgement}{%
\list{}{\advance\topsep by0.35cm\relax
\leftmargin=1cm
\labelwidth=0cm
\listparindent=0cm
\itemindent\listparindent
\rightmargin\leftmargin}\item[\hskip\labelsep
\bfseries\ackname]}
% Defines a new environment for acknowledgements.
\renewenvironment{abstract}{%
\list{}{\advance\topsep by0.35cm\relax
\leftmargin=1cm
\labelwidth=0cm
\listparindent=0cm
\itemindent\listparindent
\rightmargin\leftmargin}\item[\hskip\labelsep
\bfseries\abstractname]}
% Overwrites environment for the abstract.
\usepackage[nottoc,section]{tocbibind}
\setcounter{tocdepth}{4}
% Used to define table of contents.
\usepackage{geometry}
\geometry{
textwidth=12.2cm, % llncs has 12.2cm
textheight=19.3cm, % llncs has 19.3cm
centering
}
% Used to define the margins of the pages.
\pagestyle{headings}
% Used for page numbering.
\usepackage{hyperref}
% Used for hyperlinking cross-referenced elements.
\begin{document}
%
%Start
\input{Content/Titlepage.tex}
\restoregeometry
%
% ---- Abstract ----
%
\normalsize\begin{abstract} \normalsize
\input{Content/Abstract.tex}
\end{abstract}
\clearpage
%
\restoregeometry
%
% ---- Acknowledgements ----
%
\begin{acknowledgement} \input{Content/Acknowledgement.tex}
\end{acknowledgement}
\clearpage
%
%
% ---- Table of contents ----
%
\tableofcontents
\clearpage
%
% ---- Introduction ----
%
\section*{Introduction}
\addcontentsline{toc}{section}{Introduction}
\input{Content/Introduction.tex}
\clearpage
%
% ---- Literature Review ----
%
\section{Literature Review}
\input{Content/Literature Review.tex}
\clearpage
%
% ---- Methodology ----
%
\section{Methodology}
\input{Content/Methodology.tex}
\clearpage
%
% ---- Results ----
%
\section{Results}
\input{Content/Results.tex}
\clearpage
%
% ---- Discussion ----
%
\section{Discussion}
\input{Content/Discussion.tex}
\clearpage
%
% ---- Critical Reflection ----
%
\section{Critical Reflection}
\input{Content/Critical Reflection.tex}
\clearpage
%
% ---- Conclusion ----
%
\section*{Conclusion}
\addcontentsline{toc}{section}{Conclusion}
\input{Content/Conclusion.tex}
\clearpage
%
% ---- Appendices ----
%
\section*{Appendix}
\addcontentsline{toc}{section}{Appendix}
\input{Content/Appendix.tex}
\clearpage
%
% ---- List of figures ----
%
\listoffigures
\clearpage
%
% ---- List of tables ----
%
\listoftables
\clearpage
%
% ---- Bibliography ----
%
% Add your references to the file 'mybibliography.bib'. Then cite the references with the following command: \cite.
%
% BibTeX users should specify bibliography style 'splncs04'.
% References will then be sorted and formatted in the correct style.
%
\bibliographystyle{splncs04}
\bibliography{mybibliography} \label{references}
%
\cleardoublepage
\end{document}