%-------------------------------------------------------------------------------
% Document class (either DOC - doctorate, MAS - master, LIC - licenciate, BAC - bachelor/HIng, or REP - report)
% Also, specify language: SV or EN
\documentclass[a4paper, bac, en, screen]{oru-thesis}
%-------------------------------------------------------------------------------
% Packages and macros
%-------------------------------------------------------------------------------
\usepackage{thesis}
\usepackage[acronym,shortcuts,nonumberlist,nopostdot]{glossaries}
\makeglossaries
\newacronym{ros}{ROS}{Robot Operating System}
\newacronym{vr}{VR}{Virtual Reality}
\newacronym{ar}{AR}{Augmented Reality}
\newacronym{ik}{IK}{Inverse Kinematics}
\newacronym{lstm}{LSTM}{Long Short Term Memory}
\newacronym{cnn}{CNN}{Convolutional Neural Network}
\newacronym{rnn}{RNN}{Recurrent Neural Network}
\newacronym{rl}{RL}{Reinforcement Learning}
\newacronym{ml}{ML}{Machine Learning}
\newacronym{loa}{LOA}{Level of Autonomy}
\newacronym{dof}{DOF}{Degrees of Freedom}
\newacronym{aass}{AASS}{Centre for Applied Autonomous Sensor Systems}
%-------------------------------------------------------------------------------
% Title information
%-------------------------------------------------------------------------------
\title{Preparing Examination Work Report in BSc/MSc/MEng in Computer Engineering Programme at \"Orebro University Using \LaTeX}
\author{Author Names}
\date{\today}
% Select the subject depending on the language
\subject{Computer Science}
% \subject{Datateknik}
\supervisor{First Supervisor, Affiliation}
\supervisor{Second Supervisor, Affiliation}
\examiner{Examiner}
%-------------------------------------------------------------------------------
%-------------------------------------------------------------------------------
\begin{document}
\maketitle
%-------------------------------------------------------------------------------
% \frontmatter
%-------------------------------------------------------------------------------
\include{content/abstract}
\include{contents}
%-------------------------------------------------------------------------------
% \mainmatter
%-------------------------------------------------------------------------------
\include{content/introduction}
\include{content/related-works}
\include{content/implementation}
\include{content/results}
\include{content/conclusions}
%-------------------------------------------------------------------------------
% \backmatter
%-------------------------------------------------------------------------------
\phantomsection
\pdfbookmark[1]{List of Acronyms}{listofacronyms}
\printglossary[type=\acronymtype]
%-------------------------------------------------------------------------------
\include{backmatter}
%-------------------------------------------------------------------------------
\end{document}
%-------------------------------------------------------------------------------