\documentclass[a4paper,12pt]{book}
\usepackage[swedish]{babel} % choose the language
\usepackage[utf8]{inputenc} % äöå
\usepackage[T1]{fontenc}
\usepackage[a4paper, inner=3cm, outer=3cm, top=3cm, bottom=3cm]{geometry}
\usepackage[onehalfspacing]{setspace}
\usepackage{mathptmx} % Times New Roman
\usepackage{tikz} % Support for pictures in latex format -> convert svg files into tikz format at first
\usepackage{etoolbox} % this one makes a workaround with page numbering possible
\usepackage{csquotes} % BibLaTex stuff
\usepackage[style=verbose-ibid,backend=biber]{biblatex}
\bibliography{chapters/referenser} % write your list of references into referenser.bib located in Chapters
% Table of contents
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\begin{document}
\pagestyle{empty}
\begingroup
\patchcmd{\chapter}{plain}{empty}{}{}
%------ Cover page stuff
\begin{titlepage}
\vspace*{144pt}
\begin{center}
\Huge\bf Livet ska vara roligt %------ NAME OF THE THESIS HERE!!!
\end{center}
\enlargethispage{3cm}
\vfill
\hfill
\begin{tabular}[t]{l@{}}%{\raggedleft%
Paavo Virtanen 00712\\ % YOUR NAME AND STUDENT ID!
Kandidatavhandling i dogmatik\\ % BAC/MASTER THESIS AND MAIN SUBJECT
Handledare: John Smith\\ % NAME OF YOUR SUPERVISOR
Teologiska fakulteten\\ % FACULTY
Åbo Akademi\\
1985\\ % YEAR
\\
\\
\\
\\
\end{tabular}
%}%
\end{titlepage}
%------ end of cover page stuff
\tableofcontents
\endgroup % end of TeX group
\clearpage
\pagestyle{plain}
\pagenumbering{arabic} % Page numbering starts from here
% Example of structure
\input{chapters/example1}
\input{chapters/example2}
\input{chapters/example3}
\printbibliography[title={Källförteckning}] % Change the title in the parenthes within the braces if you want
\end{document}