80 lines
1.6 KiB
TeX
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{float}
|
|
\usepackage{cleveref}
|
|
\usepackage{csquotes}
|
|
\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/01_introduction.tex}
|
|
\input{sections/02_method.tex}
|
|
|
|
\input{sections/03_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/04_discussion.tex}
|
|
\input{sections/05_conclusion.tex}
|
|
|
|
\clearpage
|
|
\cite{noauthor_video_nodate}
|
|
\clearpage
|
|
\printbibliography[title={References}]
|
|
\end{document} |