-
Notifications
You must be signed in to change notification settings - Fork 0
/
paper.tex
136 lines (112 loc) · 4.56 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
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
% TEMPLATE for Usenix papers, specifically to meet requirements of
% USENIX '05
% originally a template for producing IEEE-format articles using LaTeX.
% written by Matthew Ward, CS Department, Worcester Polytechnic Institute.
% adapted by David Beazley for his excellent SWIG paper in Proceedings,
% Tcl 96
% turned into a smartass generic template by De Clarke, with thanks to
% both the above pioneers
% use at your own risk. Complaints to /dev/null.
% make it two column with no page numbering, default is 10 point
% Munged by Fred Douglis <douglis@research.att.com> 10/97 to separate
% the .sty file from the LaTeX source template, so that people can
% more easily include the .sty file into an existing document. Also
% changed to more closely follow the style guidelines as represented
% by the Word sample file.
% Note that since 2010, USENIX does not require endnotes. If you want
% foot of page notes, don't include the endnotes package in the
% usepackage command, below.
% This version uses the latex2e styles, not the very ancient 2.09 stuff.
\documentclass[letterpaper,twocolumn,10pt]{article}
\usepackage{usenix,epsfig,xspace}
\usepackage[sort,nocompress]{cite} % Sort Citations
\usepackage[protrusion=true,expansion=true,kerning]{microtype} % Prettier text
\usepackage{soul} % Provides \hl
%\usepackage[subrefformat=parens,labelformat=simple]{subcaption} % Replaces both subfig and subfigure
\usepackage{textcomp} % Provides \textmu for upright mu's
\usepackage[usenames,dvipsnames,svgnames]{xcolor} % Allow the use and definition of colors
\usepackage[colorlinks=true,citecolor=violet,urlcolor=blue]{hyperref} % Creates hyperlinks from ref/cite
\hypersetup{pdfstartview=FitH} % Sets default zoom to 100% width
\usepackage[capitalise,nameinlink,noabbrev]{cleveref} % Do the right thing with fig/table references
\setlength{\textfloatsep}{0.40cm}
\usepackage[compact,nonindentfirst]{titlesec}
\titlespacing{\section}{0pt}{1.5ex}{0.4ex}
\titlespacing{\subsection}{0pt}{1ex}{0.37ex}
\titlespacing{\paragraph}{0pt}{0ex}{1ex}
% Break URLs properly (thanks to Alex Halderman)
\def\UrlBreaks{\do-\do\.\do\@\do\\\do\!\do\_\do\|\do\;\do\>\do\]\do\)\do\,\do\?\do\'\do+\do\=\do\#}
\def\UrlBigBreaks{\do\:\do\/}
\newcommand{\name}{Tock\xspace}
% Some macros that a broadly useful:
\newcommand{\uW}{{\textmu}W\xspace}
\newcommand{\uA}{{\textmu}A\xspace}
\newcommand{\um}{{\textmu}m\xspace}
\newcommand{\us}{{\textmu}s\xspace}
\newcommand{\uF}{{\textmu}F\xspace}
\newcommand{\uJ}{{\textmu}J\xspace}
\newcommand{\iic}{I$^2$C\xspace}
\newcommand{\vdd}{V$_{\textnormal{DD}}$\xspace}
% Command for unnumbered footnote that doesn't increment footnote counter
\makeatletter
\def\blfootnote{\xdef\@thefnmark{}\@footnotetext}
\makeatother
\begin{document}
%don't want date printed
\date{}
%make title bold and 14 pt font (Latex default is non-bold, 16 pt)
\title{\Large \bf Microcontrollers Deserve Protection Too}
\author{
\begin{tabular}{ccc}
\multicolumn{3}{c}{
Michael P Andersen$^\dagger$,
Tom Bauer$^\ddagger$,
Sergio Benitez$^\ddagger$,
Bradford Campbell$^\S$,
David Culler$^\dagger$,
} \\
\multicolumn{3}{c}{
Prabal Dutta$^\S$,
Philip Levis$^\ddagger$,
Amit Levy$^\ddagger$,
Pat Pannuto$^\S$
and
Laurynas Riliskis$^\ddagger$
%%\vspace{0.3cm}
} \\
%
%\small{$^\dagger$Computer Science \& Engineering} &
%\small{$^\ddagger$Computer Science \& Engineering} &
%\small{$^\S$Computer Science \& Engineering} \\
%
\small{$^\dagger$University of California, Berkeley} &
\small{$^\ddagger$Stanford University} &
\small{$^\S$University of Michigan} \\
%
%\small{Berkeley, CA 94720} &
%\small{Stanford, CA 94305} &
%\small{Ann Arbor, MI 48109} \\
%
\small{\{m.andersen,culler\}@berkeley.edu} &
\small{\{tbauer01,sbenitez,pal,levya\}@stanford.edu} &
\small{\{bradjc,prabal,ppannuto\}@umich.edu} \\
\end{tabular}
}
\maketitle
\blfootnote{Authors listed in alphabetical order.}
% Use the following at camera-ready time to suppress page numbers.
% Comment it out when you first submit the paper for review.
%\thispagestyle{empty}
\begin{abstract}
\input{abstract}
\end{abstract}
\input{intro}
\input{os-considerations}
\input{protection}
\input{architecture}
\input{related}
%\input{hw-considerations}
%\input{challenges}
%\input{abstractions}
{\footnotesize \bibliographystyle{acm}
\bibliography{bibliography}}
\end{document}