-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
151 lines (121 loc) · 4.31 KB
/
main.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
151
\documentclass[conference,a4paper,10pt,times]{IEEEtran}
%\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.bebest
%\usepackage{cite}
\usepackage[parfill]{parskip}
\usepackage{hyperref}
\usepackage{extarrows}
\usepackage{centernot}
\usepackage{multirow}
\usepackage{mathtools}
\usepackage{braket}
\usepackage{mathpartir}
\usepackage{subcaption}
\usepackage{listings}
\usepackage{zi4}
%\usepackage{microtype}
\usepackage{mdframed}
\usepackage{minted}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{textcomp}
\usepackage{xcolor}
\usepackage{empheq}
\usepackage{stmaryrd}
\usepackage{suffix}
\usepackage{float}
\usepackage{dblfloatfix}
\usepackage{capt-of}
\usepackage[style=ieee, doi=false,isbn=false,url=false,mincitenames=1,maxcitenames=2]{biblatex}
\setlength\bibitemsep{0.6\baselineskip}
\DeclareFieldFormat[book,inbook,report,article,incollection,inproceedings]{pages}{}
\DeclareFieldFormat[book,inbook,report,article,incollection,inproceedings]{title}{``#1''}
\DeclareFieldFormat[book,inbook,report,article,incollection,inproceedings]{volume}{}
\DeclareFieldFormat[book,inbook,report,article,incollection,inproceedings]{number}{}
\DeclareFieldFormat[book,inbook,report,article,incollection,inproceedings]{series}{}
\usepackage{xspace}
\input{macros.tex}
\binoppenalty=\maxdimen
\relpenalty=\maxdimen
%\setlength{\textfloatsep}{0.2\baselineskip plus 0.2\baselineskip minus 0.2\baselineskip} %Reduce figure space
% Reduce equation spacing
%\setlength\abovedisplayskip{5pt plus 2pt minus 2pt}
%\setlength\belowdisplayskip{5pt plus 2pt minus 2pt}
%\setlength\abovedisplayshortskip{0pt plus 2pt}
%\setlength\belowdisplayshortskip{5pt plus 2pt minus 2pt}
%\def\review{1}
\ifx\review\undefined
\begin{filecontents}{techreport.bib}
@techreport{techreport,
title = {{Programming with Flow-Limited Authorization: Coarser is Better (Technical Report)}},
author = {M. Pedersen and S. Chong},
year = {2018}
}
@misc{flamiolib,
author = {M. Pedersen and S. Chong},
title = {{Flamio implementation in Haskell}},
howpublished = "\url{https://www.dropbox.com/s/zxy991pjeepl8nn/FLAMinLIO.zip}",
year = {2018}
}
\end{filecontents}
\else
\begin{filecontents}{techreport.bib}
@techreport{techreport,
title = {{Programming with Flow-Limited Authorization: Coarser is Better}},
author = {{\relax Removed for anonymous submission}},
year = {2018}
}
@misc{flamiolib,
author = {{\relax Removed for anonymous submission}},
title = {{Flamio implementation in Haskell}},
howpublished = "\url{https://www.dropbox.com/s/zxy991pjeepl8nn/FLAMinLIO.zip}",
year = {2018}
}
\end{filecontents}
\fi
%\bibliographystyle{abbrv}
\AtBeginBibliography{\footnotesize}
\addbibresource{litterature.bib}
\addbibresource{techreport.bib}
\begin{document}
\title{Programming with Flow-Limited Authorization: Coarser is Better}
\ifx\review\undefined
\author{\IEEEauthorblockN{Mathias V. Pedersen}
\IEEEauthorblockA{\textit{Department of Computer Science} \\
\textit{Aarhus University}\\
\href{mailto:[email protected]}{[email protected]}}
\and
\IEEEauthorblockN{Stephen Chong}
\IEEEauthorblockA{\textit{Harvard School of Engineering and Applied Sciences} \\
\textit{Cambridge, Massachusetts}\\
\href{mailto:[email protected]}{[email protected]}}
}
\else
\fi
\maketitle
\input{Sections/abstract.tex}
%\begin{IEEEkeywords}
%component, formatting, style, styling, insert
%\end{IEEEkeywords}
\section{Introduction}\label{sec:introduction}
\input{Sections/introduction.tex}
\section{Background on FLAM and LIO}\label{sec:background}
\input{Sections/background.tex}
\section{Introduction to \lang{} by Example}\label{sec:programming}
\input{Sections/programming.tex}
\section{A calculus for \lang}\label{sec:calculus}
\input{Sections/calculus.tex}
\section{Security guarantees}\label{sec:guarantees}
\input{Sections/guarantees.tex}
\section{Implementation and case studies}\label{sec:case-studies}
\input{Sections/case-studies.tex}
\section{Related work}\label{sec:related-work}
\input{Sections/related-work.tex}
\section{Conclusion}\label{sec:conclusion}
\input{Sections/conclusion.tex}
\section{Acknowledgements}\label{sec:acknowledgements}
\input{Sections/acknowledgements.tex}
\printbibliography
\end{document}