ec3f8f2ea5982a523d6c8972da07488d3e59684c
[pintos-anon] / sigcse2009 / sigcse2009.tex
1 % This is "sig-alternate.tex" V1.8 June 2007
2 % This file should be compiled with V2.3 of "sig-alternate.cls" June 2007
3 %
4 % This example file demonstrates the use of the 'sig-alternate.cls'
5 % V2.3 LaTeX2e document class file. It is for those submitting
6 % articles to ACM Conference Proceedings WHO DO NOT WISH TO
7 % STRICTLY ADHERE TO THE SIGS (PUBS-BOARD-ENDORSED) STYLE.
8 % The 'sig-alternate.cls' file will produce a similar-looking,
9 % albeit, 'tighter' paper resulting in, invariably, fewer pages.
10 %
11 % ----------------------------------------------------------------------------------------------------------------
12 % This .tex file (and associated .cls V2.3) produces:
13 %       1) The Permission Statement
14 %       2) The Conference (location) Info information
15 %       3) The Copyright Line with ACM data
16 %       4) NO page numbers
17 %
18 % as against the acm_proc_article-sp.cls file which
19 % DOES NOT produce 1) thru' 3) above.
20 %
21 % Using 'sig-alternate.cls' you have control, however, from within
22 % the source .tex file, over both the CopyrightYear
23 % (defaulted to 200X) and the ACM Copyright Data
24 % (defaulted to X-XXXXX-XX-X/XX/XX).
25 % e.g.
26 % \CopyrightYear{2007} will cause 2007 to appear in the copyright line.
27 % \crdata{0-12345-67-8/90/12} will cause 0-12345-67-8/90/12 to appear in the copyright line.
28 %
29 % ---------------------------------------------------------------------------------------------------------------
30 % This .tex source is an example which *does* use
31 % the .bib file (from which the .bbl file % is produced).
32 % REMEMBER HOWEVER: After having produced the .bbl file,
33 % and prior to final submission, you *NEED* to 'insert'
34 % your .bbl file into your source .tex file so as to provide
35 % ONE 'self-contained' source file.
36 %
37 % ================= IF YOU HAVE QUESTIONS =======================
38 % Questions regarding the SIGS styles, SIGS policies and
39 % procedures, Conferences etc. should be sent to
40 % Adrienne Griscti (griscti@acm.org)
41 %
42 % Technical questions _only_ to
43 % Gerald Murray (murray@acm.org)
44 % ===============================================================
45 %
46 % For tracking purposes - this is V1.8 - June 2007
47
48 \documentclass{sig-alternate}
49
50 \begin{document}
51 %
52 % --- Author Metadata here ---
53 \conferenceinfo{SIGCSE}{'09 Chattanooga, Tennessee, USA}
54 %\CopyrightYear{2007} % Allows default copyright year (200X) to be over-ridden - IF NEED BE.
55 %\crdata{0-12345-67-8/90/01}  % Allows default copyright data (0-89791-88-6/97/05) to be over-ridden - IF NEED BE.
56 % --- End of Author Metadata ---
57
58 \title{The Pintos Instructional Operating System Kernel}
59
60 \subtitle{[Draft]}
61
62 \numberofauthors{3}
63 \author{
64 % 1st. author
65 \alignauthor Ben Pfaff\\
66        \affaddr{Nicira Networks}\\
67        \affaddr{Palo Alto, CA}\\
68        \email{blp@nicira.com}
69 % 2nd. author
70 \alignauthor Anthony Romano\\
71        \affaddr{Stanford University}\\
72        \affaddr{Palo Alto, CA}\\
73        \email{ajromano@stanford.edu}
74 % 3rd. author
75 \alignauthor Godmar Back\\
76        \affaddr{Virginia Tech}\\
77        \affaddr{Blacksburg}\\
78        \email{gback@cs.vt.edu}
79 }
80
81 \maketitle
82 \begin{abstract}
83 \input{abstract}
84 \end{abstract}
85
86 % A category with the (minimum) three required fields
87 %\category{H.4}{Information Systems Applications}{Miscellaneous}
88 %A category including the fourth, optional field follows...
89 %\category{D.2.8}{Software Engineering}{Metrics}[complexity measures, performance measures]
90
91 %\terms{Fill in terms here if we need them}
92
93 %\keywords{Fill in keywords here if we need them}
94
95 \input{introduction}
96
97 \input{principles}
98
99 \input{assignments}
100
101 \input{rest}
102
103 % remove the following line before submitting!
104 \nocite{*}
105
106
107 \bibliographystyle{abbrv}
108
109 %
110 %
111 \bibliography{sigcse2009}  % sigproc.bib is the name of the Bibliography in this case
112 \end{document}