aboutsummaryrefslogtreecommitdiffstats
path: root/doc/thesis/Fading.tex
blob: 1844ceb12e60a1a96d22976b5c3070e0f3868a44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
% !TeX program = xelatex
% !TeX encoding = utf8
% !TeX root = Fading.tex
% vim: set ts=2 sw=2 noet:

\documentclass[
	% page size and margins
	paper = a4, twoside, openright, BCOR = 5mm,
	headinclude, footexclude,
	% font size
	fontsize = 11pt,
	% style of empty pages (after chapters)
	cleardoublepage = empty,
	% extra sections
	titlepage, abstract = on,
	% header and footers
	automark,
]{scrreprt}

%% Language configuration
\usepackage{polyglossia}

%% Custom packages
\usepackage{tex/docmacros}
\usepackage{tex/docstyle}

%% Pretty figures
\usepackage{circuitikz}  % Electric diagrams
\usepackage{pgfplots}    % Pretty plots
\usepackage{tikz}        % Pretty drawings
\usepackage{tikz-3dplot} % More dimensions!

\pgfplotsset{compat=1.17}
\usetikzlibrary{
	external,
	calc,
	positioning,
	backgrounds,
	decorations.pathreplacing,
	decorations.markings,
	matrix,
	arrows,
}
% \tikzexternalize[
	% mode=graphics if exists,
	% figure list=true]
\pgfdeclarelayer{background}
\pgfdeclarelayer{foreground}
\pgfsetlayers{background,main,foreground}


\usepackage{graphicx}   % Include pictures
\usepackage{subcaption} % Subfigures

%% Load bibliography 
\addbibresource{Fading.bib}

%% Recompute page margins
\KOMAoptions{DIV=default}

%% Metadata
\title{Multipath fading demonstration using software defined radio}
\author{Naoki Sean Pross \and Sara Cinzia Halter}
\date{Fall semester 2021}

\begin{document}

	\hypersetup{pageanchor = false}

	%% TODO: create a proper titlepage
	\maketitle
	% \include{tex/titlepage}

	\cleardoublepage
	\pagenumbering{roman}
	\setcounter{page}{1}

	\begin{abstract}
		%% TODO: write abstract
		Here goes the abstract
	\end{abstract}

	\tableofcontents

	\cleardoublepage
	\hypersetup{pageanchor = true}
	\pagenumbering{arabic}
	\setcounter{page}{1}
	\pagestyle{scrheadings}

	\include{chapters/introduction}
	\include{chapters/theory}
	\include{chapters/implementation}
	\include{chapters/conclusions}

	\printbibliography

\end{document}