ITU Thesis Template
Author
Robert Bayer
Last Updated
6 months ago
License
Creative Commons CC BY 4.0
Abstract
This is an unofficial overleaf template of IT University of Copenhagen.
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{svg}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{xcolor}
\usepackage{booktabs} % For prettier tables
\usepackage{multicol}
\usepackage{multirow}
\usepackage[shortlabels]{enumitem}
\usepackage{hyperref}
\usepackage{cleveref}
\usepackage{subcaption}
\usepackage{fancyhdr}
\usepackage{array}
\usepackage{ragged2e}
\usepackage{multirow}
\newcolumntype{P}[1]{>{\centering\arraybackslash}p{#1}} % center the column and justify its contents to the top in multirow tables
\newcolumntype{R}[1]{>{\RaggedLeft\arraybackslash}p{#1}} % Align column to the right in multirow tables
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{mystyle}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\ttfamily\footnotesize,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=2
}
\lstset{style=mystyle}
% --- set footer and header ---
\renewcommand{\headrulewidth}{1pt}
\renewcommand{\footrulewidth}{1pt}
\title{Title}
\pagestyle{fancy}
\fancyhf{}
\makeatletter\let\Title\@title\makeatother
\lhead{\Title}
\rfoot{\includegraphics[height=1cm]{Figures/logo_small.png}} % right header logo
\setlength\headheight{16pt}
\setlength{\footskip}{50pt}
\lhead{\Title} %rightH title
\cfoot{\thepage}
% --- end footer and header ---
%----------EDIT COVER INFO HERE -----------------%
\def \LOGOPATH {Figures/ITU.svg}
\def \DEPARTEMENT {Department of Computer Science}
\def \COURSENUM {KISPECIxxx}
\def \COURSENAME {Master Thesis}
\def \REPORTTITLE {Thesis Title}
\def \STUDENTNAME {Your name (xxxx@itu.dk)}
\def \INSTRUCTOR {Supervisor's name}
%------------------------------------------------%
\begin{document}
\pagenumbering{Roman}
\begin{titlepage}
\vfill
\begin{center}
\includesvg[width=0.7\textwidth]{\LOGOPATH} \\
\hfill \\
\Large{\DEPARTEMENT} \\
\Large{\COURSENUM\;-\;\COURSENAME} \\
\vfill
\textbf{\LARGE{\REPORTTITLE}}
\end{center}
\vfill
\begin{flushleft}
\Large{\textbf{Prepared by:} \STUDENTNAME} \\
\Large{\textbf{Supervised by:} \INSTRUCTOR} \\
\Large{\textbf{Date:} \today}
\end{flushleft}
\vfill
\end{titlepage}
%-----------------------------------------------%
%\tableofcontents
%\clearpage
\input{Sections/Abstract}
\newpage
\tableofcontents
\newpage
\pagenumbering{arabic}
\fancyfoot[C]{Page \thepage\ of \pageref{EndOfText}}
%%%%%%% Note %%%%%%%
% The placeholder text is heavily influenced by the ACM proceedings template.
%%%%%%%%%%%%%%%%%%%%
\input{Sections/Figures}
\input{Sections/Tables}
\input{Sections/Math}
\input{Sections/CodeListings}
\input{Sections/Citations}
\label{EndOfText}
\newpage
\pagenumbering{Roman}
\fancyfoot[C]{Page \thepage\ of \pageref{endOfDoc}}
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,cites}
\label{endOfDoc}
%\clearpage
%\listoffigures
%\clearpage
%\listoftables
%\clearpage
%\listoflistings
\end{document}