Files
NoroffExam/report/main.tex
2026-05-11 13:17:25 +02:00

80 lines
1.6 KiB
TeX

% !TeX root = main.tex
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{lmodern}
\usepackage[a4paper,margin=2.5cm]{geometry}
\usepackage{setspace}
\onehalfspacing
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{amsmath}
\usepackage{hyperref}
\usepackage{xcolor}
\usepackage{listings}
\usepackage{lipsum}
\usepackage{cleveref}
\usepackage[backend=biber,style=authoryear]{biblatex}
\addbibresource{references.bib}
\hypersetup{
colorlinks=true,
linkcolor=black,
urlcolor=blue,
citecolor=blue
}
\lstset{
basicstyle=\ttfamily\small,
breaklines=true,
frame=single,
numbers=left,
numberstyle=\tiny,
keywordstyle=\color{blue},
commentstyle=\color{gray},
stringstyle=\color{teal}
}
\title{Analysis of Cookie Activity in Web Search Traffic}
\author{Tord-Vincent Heggland}
\date{\today}
\begin{document}
\pagenumbering{roman}
\maketitle
\begin{abstract}
\label{abs:abstr}
\centering
\lipsum[1]
\end{abstract}
\clearpage
\tableofcontents
\clearpage
\pagenumbering{arabic}
\setcounter{page}{1}
\input{sections/introduction.tex}
\input{sections/method.tex}
\input{sections/results.tex}
%\begin{figure}[h]
% \centering
% \includegraphics[width=\textwidth]{figures/Figure1.png}
% \caption{Total video game sales by genre in North America (millions of units).}
%\label{fig:Figure1}
%\end{figure}
\input{sections/discussion.tex}
\input{sections/conclusion.tex}
\clearpage
\cite{noauthor_video_nodate}
\clearpage
\printbibliography[title={References}]
\end{document}