2018-11-27 17:35:59 +00:00
|
|
|
\documentclass[12pt,a4paper]{report}
|
2018-11-26 13:02:52 +00:00
|
|
|
\usepackage{latexplate}
|
2018-11-27 17:35:59 +00:00
|
|
|
\usepackage[left=30mm,right=30mm,top=15mm,bottom=15mm]{geometry}
|
2018-11-26 13:02:52 +00:00
|
|
|
\usepackage[magyar,english]{babel}
|
2018-11-27 15:49:38 +00:00
|
|
|
\usepackage[defaultlines=10,all]{nowidow}
|
2018-11-26 13:02:52 +00:00
|
|
|
\usepackage{advdate}
|
2018-11-27 15:49:38 +00:00
|
|
|
\usepackage{hyperref}
|
2018-11-29 17:34:11 +00:00
|
|
|
\usepackage{listings}
|
|
|
|
\usepackage{csquotes}
|
|
|
|
\usepackage{biblatex}
|
2018-11-26 13:02:52 +00:00
|
|
|
|
2018-12-01 08:06:21 +00:00
|
|
|
\setcounter{biburllcpenalty}{7000}
|
|
|
|
\setcounter{biburlucpenalty}{8000}
|
|
|
|
|
2018-11-29 17:34:11 +00:00
|
|
|
\addbibresource{bibliography.bib}
|
|
|
|
|
|
|
|
\lstset{
|
|
|
|
basicstyle=\scriptsize\ttfamily,
|
|
|
|
showstringspaces=false,
|
|
|
|
aboveskip=15pt,
|
|
|
|
belowskip=15pt,
|
|
|
|
}
|
2018-12-02 15:44:31 +00:00
|
|
|
\newcommand{\code}{\lstinline}
|
2018-11-26 13:02:52 +00:00
|
|
|
|
|
|
|
\setmainfont{Constantia}
|
2018-11-29 17:34:11 +00:00
|
|
|
\setmonofont{DejaVu Sans Mono}
|
2018-11-26 13:02:52 +00:00
|
|
|
|
|
|
|
\renewcommand{\headrulewidth}{0pt}
|
|
|
|
\fancyhead{}
|
|
|
|
\fancyfoot{}
|
|
|
|
\pagestyle{fancy}
|
|
|
|
\fancyfoot[C]{\thepage}
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
\include{content/titlepage}
|
|
|
|
|
|
|
|
\microtypesetup{protrusion=false}
|
|
|
|
\tableofcontents
|
|
|
|
\microtypesetup{protrusion=true}
|
|
|
|
\thispagestyle{empty}
|
2018-12-01 14:44:42 +00:00
|
|
|
\cleardoublepage{}
|
2018-11-26 13:02:52 +00:00
|
|
|
|
|
|
|
\include{content/declaration}
|
|
|
|
\include{content/abstract}
|
|
|
|
\include{content/introduction}
|
2018-11-30 18:35:49 +00:00
|
|
|
\include{content/architecture}
|
2018-12-01 15:39:05 +00:00
|
|
|
\include{content/a_tour_of_tfw}
|
2018-12-01 15:57:15 +00:00
|
|
|
\include{content/using_the_framework}
|
2018-12-01 16:07:24 +00:00
|
|
|
\include{content/summary}
|
|
|
|
\include{content/acknowledgements}
|
2018-11-26 13:02:52 +00:00
|
|
|
|
2018-11-30 18:35:49 +00:00
|
|
|
\listoffigures
|
2018-12-01 14:44:42 +00:00
|
|
|
\lstlistoflistings{}
|
2018-11-29 17:34:11 +00:00
|
|
|
|
2018-11-27 17:44:30 +00:00
|
|
|
\renewcommand\bibname{References}
|
2018-11-29 17:34:11 +00:00
|
|
|
\printbibliography{}
|
2018-11-26 13:02:52 +00:00
|
|
|
\end{document}
|