7f741a1313f66ef0f59ce4c2082049a95771e472
[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 \usepackage{graphicx}
51
52 % from http://mintaka.sdsu.edu/GF/bibliog/latex/floats.html
53 % Alter some LaTeX defaults for better treatment of figures:
54 % See p.105 of "TeX Unbound" for suggested values.
55 % See pp. 199-200 of Lamport's "LaTeX" book for details.
56 %   General parameters, for ALL pages:
57 \renewcommand{\topfraction}{0.9}    % max fraction of floats at top
58 \renewcommand{\bottomfraction}{0.8} % max fraction of floats at bottom
59 %   Parameters for TEXT pages (not float pages):
60 \setcounter{topnumber}{2}
61 \setcounter{bottomnumber}{2}
62 \setcounter{totalnumber}{4}     % 2 may work better
63 \setcounter{dbltopnumber}{2}    % for 2-column pages
64 \renewcommand{\dbltopfraction}{0.9} % fit big float above 2-col. text
65 \renewcommand{\textfraction}{0.07}  % allow minimal text w. figs
66 %   Parameters for FLOAT pages (not text pages):
67 \renewcommand{\floatpagefraction}{0.7}  % require fuller float pages
68 % N.B.: floatpagefraction MUST be less than topfraction !!
69 \renewcommand{\dblfloatpagefraction}{0.7}   % require fuller float pages
70 % remember to use [htp] or [htpb] for placement
71 %------------------
72
73 \begin{document}
74 %
75 % --- Author Metadata here ---
76 \conferenceinfo{SIGCSE}{'09 Chattanooga, Tennessee, USA}
77 %\CopyrightYear{2007} % Allows default copyright year (200X) to be over-ridden - IF NEED BE.
78 %\crdata{0-12345-67-8/90/01}  % Allows default copyright data (0-89791-88-6/97/05) to be over-ridden - IF NEED BE.
79 % --- End of Author Metadata ---
80
81 \title{The Pintos Instructional Operating System Kernel}
82
83 % \subtitle{[Draft]}
84
85 \numberofauthors{3}
86 \author{
87 % 1st. author
88 \alignauthor Ben Pfaff\\
89        \affaddr{Nicira Networks}\\
90        \affaddr{Palo Alto, CA}\\
91        \email{blp@nicira.com}
92 % 2nd. author
93 \alignauthor Anthony Romano\\
94        \affaddr{Stanford University}\\
95        \affaddr{Palo Alto, CA}\\
96        \email{ajromano@stanford.edu}
97 % 3rd. author
98 \alignauthor Godmar Back\\
99        \affaddr{Virginia Tech}\\
100        \affaddr{Blacksburg}\\
101        \email{gback@cs.vt.edu}
102 }
103
104 \maketitle
105 \begin{abstract}
106 \input{abstract}
107 \end{abstract}
108
109 % A category with the (minimum) three required fields
110 %\category{H.4}{Information Systems Applications}{Miscellaneous}
111 %A category including the fourth, optional field follows...
112 %\category{D.2.8}{Software Engineering}{Metrics}[complexity measures, performance measures]
113
114 %\terms{Fill in terms here if we need them}
115
116 %\keywords{Fill in keywords here if we need them}
117
118 \input{figures}
119
120 \input{introduction}
121
122 \input{principles}
123
124 \input{assignments}
125
126 \input{racedt}
127
128 \input{rest}
129
130 % remove the following line before submitting!
131 % \nocite{*}
132
133
134 \bibliographystyle{abbrv}
135
136 %
137 %
138 \bibliography{sigcse2009}  % sigproc.bib is the name of the Bibliography in this case
139 \end{document}