\documentclass[a4paper, 12pt]{article}
\usepackage[english]{babel}
\usepackage{fontspec}
\usepackage{setspace}
\usepackage{datetime}
\usepackage{mathptmx}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage[top=2.5cm, left=2.5cm, bottom=2.5cm, right=2.5cm]{geometry} % sets the margins
\usepackage{amsmath,amsthm,amssymb}
\usepackage{url} % fixes url problem
\usepackage{csquotes}% Recommended
\usepackage{natbib}
\usepackage{indentfirst}
\usepackage[colorlinks = true, linkcolor = black, citecolor=black, urlcolor=black, filecolor = black, bookmarks=false,hypertexnames=true]{hyperref}
\bibpunct{\textcolor{black}{[}}{\textcolor{black}{]}}{;}{a}{}{,}
% Set the length of the indentation of the first line of each paragraph (0 if you don't want the first lines to be indented)
\setlength{\parindent}{0.5cm}
% Tip: if you want that only specific paragraphs are not indented, wrap them in command \noindent{}
\setmainfont{Times New Roman}
\onehalfspacing
\linespread{1.25}
\input{0_setinfo}
% MyCommands
\newcommand{\CourseNumberAndName}{\CourseNumber \ - \CourseName}
\newcommand{\YourNameAndNumber}{\YourName \ - \YourStudNumber}
\newcommand{\WriteResponsible}{Responsible: \Responsible}
\newcommand{\WriteExaminers}{Examiners: \Examiners}
\begin{document}
\begin{flushleft}
% University logo
\includegraphics[width=7cm]{files/LUT5.jpg}
%
\textbf{\School}\\
\Major\\
\CourseNumberAndName\\
\WriteResponsible\\
% Comment the line below if there are no examiners
\WriteExaminers\\
\end{flushleft}
\begin{center}
\vfill
\Large
\textbf{\YourTitleReport}\\
\textit{\YourSubtitle}\\
\vfill
\end{center}
\begin{flushright}
\YourDate \\ % Date of submission
\YourNameAndNumber \\ % Student number only if you are returning your work to a place where other students are not able to see it. In group works, only names.
\end{flushright}
\thispagestyle{empty}
\titlepage
\pagenumbering{gobble}
\tableofcontents
% Comment the lines below if you don't want list of Figures and/or list of Tables
\listoffigures
\listoftables
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\input{1_body}
\clearpage
\thispagestyle{empty}
\bibliography{files/references}
\bibliographystyle{abbrv}
\end{document}