-
Notifications
You must be signed in to change notification settings - Fork 4
/
pmldc.tex
150 lines (114 loc) · 3.34 KB
/
pmldc.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
\documentclass[11pt,twoside,a4paper]{article}
\usepackage[english]{babel}
\usepackage{amsthm}
\usepackage{todonotes}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{url}
\usepackage{listings}
\usepackage{balance}
\usepackage{epigraph}
\usepackage{fixltx2e}
\usepackage{graphicx}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage{caption}
\usepackage{color}
\usepackage{hyperref}
\usepackage{breakurl}
\usepackage{textcomp}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyfoot{}
\fancyfoot[LE,LO]{MY TEXT}
\renewcommand{\footrulewidth}{0.4pt}
\fancyfoot[L]{Programming Models and Languages for Distributed Computation\\ \textcopyright\ 2016 Christopher S. Meiklejohn}
\usepackage{cleveref}
\crefname{section}{§}{§§}
\Crefname{section}{§}{§§}
\setlength{\belowcaptionskip}{0pt}
% \setlength{\belowcaptionskip}{-10pt}
% \setlength{\abovecaptionskip}{-5pt}
\renewcommand\floatpagefraction{.9}
\renewcommand\topfraction{.9}
\renewcommand\bottomfraction{.9}
\renewcommand\textfraction{.1}
\usepackage[labelformat=simple]{subcaption}
\renewcommand\thesubfigure{(\alph{subfigure})}
\hypersetup{
colorlinks=true,
citebordercolor=cyan,
filebordercolor=red,
linkbordercolor=blue,
citecolor=cyan,
linkcolor=red,
urlcolor=blue}
\captionsetup[figure]{labelfont=bf,font={small,it},margin=10pt}
\captionsetup[figure]{labelfont=bf}
\captionsetup[subfigure]{labelfont=bf,
textfont=normalfont,
singlelinecheck=off,
justification=raggedright,
font=small}
\usepackage{MnSymbol}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}{Corollary}[theorem]
\newtheorem{lemma}[theorem]{Lemma}
\theoremstyle{definition}
\newtheorem{definition}{Definition}[section]
\theoremstyle{definition}
\newtheorem{property}{Property}[section]
\theoremstyle{remark}
\newtheorem*{remark}{Remark}
\lstset{basicstyle=\ttfamily\footnotesize,
numbers=left,
numbersep=5pt,
numberstyle=\tiny,
columns=fullflexible,
showstringspaces=false,
keywordstyle=\color{blue},
stringstyle=\color{red},
commentstyle=\color{purple},
morecomment=[l][\color{magenta}]{\#}}
\newcommand*{\myprime}{^{\prime}\mkern-1.2mu}
\newcommand*{\mydprime}{^{\prime\prime}\mkern-1.2mu}
\newcommand*{\mytrprime}{^{\prime\prime\prime}\mkern-1.2mu}
%% Fix numbering to be compatible with IEEE style.
\renewcommand\thetheorem{\arabic{section}.\arabic{theorem}}
\renewcommand\thedefinition{\arabic{section}.\arabic{definition}}
\begin{document}
\title{Programming Models and Languages for Distributed Computation}
\author{Christopher S. Meiklejohn\\
Universit\'e catholique de Louvain\\
Louvain-la-Neuve, Belgium\\
\texttt{[email protected]}}
\date{\today}
\maketitle
\clearpage
\tableofcontents
\clearpage
\section{Remote Procedure Call}
\input{rpc}
\clearpage
\section{PLITS}
\input{plits}
\clearpage
\section{ARGUS}
\input{argus}
\clearpage
\section{Promises}
\input{promises}
\clearpage
\section{Emerald}
\input{emerald}
\clearpage
\section{Hermes}
\input{hermes}
\clearpage
\input{todo}
\section*{Acknowledgements}
I would like to thank the following people who provided helpful editing with the material: Sean Cribbs, Stuart Marks, and Steve Vinoski.
\clearpage
\bibliographystyle{abbrv}
\bibliography{pl}
\end{document}