-
Notifications
You must be signed in to change notification settings - Fork 1
/
paper.tex
83 lines (68 loc) · 1.69 KB
/
paper.tex
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
%\documentclass[letterpaper, twocolumn]{article}
\documentclass[letterpaper]{article}
% Change the margins to 1 inch all around.
\usepackage[margin=1in]{geometry}
% font handling
%\usepackage{fontspec}
% for setting the linespace (\setstretch)
\usepackage{setspace}
% distance between the columns
\setlength{\columnsep}{1cm}
% for compactitem
\usepackage{paralist}
% for comments
\usepackage{verbatim}
\usepackage{booktabs}
\usepackage{longtable}
\usepackage{float}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{amsmath}
\usepackage{tcolorbox}
\usepackage{amssymb}
\usepackage[
sorting=none,
minbibnames=8,
maxbibnames=9,
block=space,
backend=biber
]{biblatex}
\bibliography{bibliography}
\usepackage{lipsum}
\begin{document}
% Blue text box for answers.
\newtcolorbox{myanswerbox}[1][]{
colback=blue!5!white, % Background color
colframe=blue!75!black, % Bourder color
fonttitle=\bfseries, % Font style of the title
title=#1, % Title
arc=0mm, % Rounded corners
#1
}
\lstset{
language=Python,
basicstyle=\ttfamily\small,
keywordstyle=\color{blue},
backgroundcolor=\color{lightgray}
}
%=============================
\input{misc/title}
{
\setstretch{1.1}
\input{misc/abstract}
}
\newpage
%=============================
\input{sections/introduction}
\input{sections/predictive_markets}
\input{sections/crypto_predictive_markets}
\input{sections/revising_assumptions}
\input{sections/conclusion}
\section{References}
% the \nocite command leads to the whole bibliography
% being displayed (without any \cite commands necessary).
% remove this command in order to get the "normal" behavior.
\nocite{*}
\printbibliography[heading=none]
\end{document}