source: doc/theses/thierry_delisle_PhD/thesis/thesis.tex @ bace538

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since bace538 was bace538, checked in by Peter A. Buhr <pabuhr@…>, 3 years ago

proofread Thierry's chapter 2 and 3, update latex formatting, add bibliography entries

  • Property mode set to 100644
File size: 14.8 KB
Line 
1% uWaterloo Thesis Template for LaTeX
2% Last Updated June 14, 2017 by Stephen Carr, IST Client Services
3% FOR ASSISTANCE, please send mail to rt-IST-CSmathsci@ist.uwaterloo.ca
4
5% Effective October 2006, the University of Waterloo
6% requires electronic thesis submission. See the uWaterloo thesis regulations at
7% https://uwaterloo.ca/graduate-studies/thesis.
8
9% DON'T FORGET TO ADD YOUR OWN NAME AND TITLE in the "hyperref" package
10% configuration below. THIS INFORMATION GETS EMBEDDED IN THE PDF FINAL PDF DOCUMENT.
11% You can view the information if you view Properties of the PDF document.
12
13% Many faculties/departments also require one or more printed
14% copies. This template attempts to satisfy both types of output.
15% It is based on the standard "book" document class which provides all necessary
16% sectioning structures and allows multi-part theses.
17
18% DISCLAIMER
19% To the best of our knowledge, this template satisfies the current uWaterloo requirements.
20% However, it is your responsibility to assure that you have met all
21% requirements of the University and your particular department.
22% Many thanks for the feedback from many graduates that assisted the development of this template.
23
24% -----------------------------------------------------------------------
25
26% By default, output is produced that is geared toward generating a PDF
27% version optimized for viewing on an electronic display, including
28% hyperlinks within the PDF.
29
30% E.g. to process a thesis called "mythesis.tex" based on this template, run:
31
32% pdflatex mythesis     -- first pass of the pdflatex processor
33% bibtex mythesis       -- generates bibliography from .bib data file(s)
34% makeindex         -- should be run only if an index is used
35% pdflatex mythesis     -- fixes numbering in cross-references, bibliographic references, glossaries, index, etc.
36% pdflatex mythesis     -- fixes numbering in cross-references, bibliographic references, glossaries, index, etc.
37
38% If you use the recommended LaTeX editor, Texmaker, you would open the mythesis.tex
39% file, then click the PDFLaTeX button. Then run BibTeX (under the Tools menu).
40% Then click the PDFLaTeX button two more times. If you have an index as well,
41% you'll need to run MakeIndex from the Tools menu as well, before running pdflatex
42% the last two times.
43
44% N.B. The "pdftex" program allows graphics in the following formats to be
45% included with the "\includegraphics" command: PNG, PDF, JPEG, TIFF
46% Tip 1: Generate your figures and photos in the size you want them to appear
47% in your thesis, rather than scaling them with \includegraphics options.
48% Tip 2: Any drawings you do should be in scalable vector graphic formats:
49% SVG, PNG, WMF, EPS and then converted to PNG or PDF, so they are scalable in
50% the final PDF as well.
51% Tip 3: Photographs should be cropped and compressed so as not to be too large.
52
53% To create a PDF output that is optimized for double-sided printing:
54%
55% 1) comment-out the \documentclass statement in the preamble below, and
56% un-comment the second \documentclass line.
57%
58% 2) change the value assigned below to the boolean variable
59% "PrintVersion" from "false" to "true".
60
61% --------------------- Start of Document Preamble -----------------------
62
63% Specify the document class, default style attributes, and page dimensions
64% For hyperlinked PDF, suitable for viewing on a computer, use this:
65\documentclass[letterpaper,12pt,titlepage,oneside,final]{book}
66
67% For PDF, suitable for double-sided printing, change the PrintVersion variable below
68% to "true" and use this \documentclass line instead of the one above:
69%\documentclass[letterpaper,12pt,titlepage,openright,twoside,final]{book}
70
71\newcommand{\href}[1]{#1} % does nothing, but defines the command so the
72    % print-optimized version will ignore \href tags (redefined by hyperref pkg).
73
74% This package allows if-then-else control structures.
75\usepackage{ifthen}
76\newboolean{PrintVersion}
77\setboolean{PrintVersion}{false}
78% CHANGE THIS VALUE TO "true" as necessary, to improve printed results for hard copies
79% by overriding some options of the hyperref package below.
80
81%\usepackage{nomencl} % For a nomenclature (optional; available from ctan.org)
82\usepackage{amsmath,amssymb,amstext} % Lots of math symbols and environments
83\usepackage{graphicx} % For including graphics
84
85% Hyperlinks make it very easy to navigate an electronic document.
86% In addition, this is where you should specify the thesis title
87% and author as they appear in the properties of the PDF document.
88% Use the "hyperref" package
89% N.B. HYPERREF MUST BE THE LAST PACKAGE LOADED; ADD ADDITIONAL PKGS ABOVE
90\usepackage[pagebackref=false]{hyperref} % with basic options
91                % N.B. pagebackref=true provides links back from the References to the body text. This can cause trouble for printing.
92\hypersetup{
93        plainpages=false,       % needed if Roman numbers in frontpages
94        unicode=false,          % non-Latin characters in Acrobat’s bookmarks
95        pdftoolbar=true,        % show Acrobat’s toolbar?
96        pdfmenubar=true,        % show Acrobat’s menu?
97        pdffitwindow=false,     % window fit to page when opened
98        pdfstartview={FitH},    % fits the width of the page to the window
99        pdftitle={The Cforall Scheduler},    % title
100        pdfauthor={Thierry Delisle},    % author
101        pdfsubject={Cforall},   % subject
102        pdfkeywords={Cforall} {concurrency} {scheduling}, % list of keywords
103        pdfnewwindow=true,      % links in new window
104        colorlinks=true,        % false: boxed links; true: colored links
105        linkcolor=blue,         % color of internal links
106        citecolor=green,        % color of links to bibliography
107        filecolor=magenta,      % color of file links
108        urlcolor=cyan           % color of external links
109}
110\ifthenelse{\boolean{PrintVersion}}{   % for improved print quality, change some hyperref options
111\hypersetup{    % override some previously defined hyperref options
112        citecolor=black,
113        filecolor=black,
114        linkcolor=black,
115        urlcolor=black
116}}{} % end of ifthenelse (no else)
117
118\usepackage[automake,toc,abbreviations]{glossaries-extra} % Exception to the rule of hyperref being the last add-on package
119% If glossaries-extra is not in your LaTeX distribution, get it from CTAN (http://ctan.org/pkg/glossaries-extra),
120% although it's supposed to be in both the TeX Live and MikTeX distributions. There are also documentation and
121% installation instructions there.
122\renewcommand*{\glstextformat}[1]{\textsf{#1}}
123
124\usepackage{csquotes}
125\usepackage{indentfirst} % as any self-respecting frenchman would
126
127% Setting up the page margins...
128\setlength{\textheight}{9in}\setlength{\topmargin}{-0.45in}\setlength{\headsep}{0.25in}
129% uWaterloo thesis requirements specify a minimum of 1 inch (72pt) margin at the
130% top, bottom, and outside page edges and a 1.125 in. (81pt) gutter
131% margin (on binding side). While this is not an issue for electronic
132% viewing, a PDF may be printed, and so we have the same page layout for
133% both printed and electronic versions, we leave the gutter margin in.
134% Set margins to minimum permitted by uWaterloo thesis regulations:
135\setlength{\marginparwidth}{0pt} % width of margin notes
136% N.B. If margin notes are used, you must adjust \textwidth, \marginparwidth
137% and \marginparsep so that the space left between the margin notes and page
138% edge is less than 15 mm (0.6 in.)
139\setlength{\marginparsep}{0pt} % width of space between body text and margin notes
140\setlength{\evensidemargin}{0.125in} % Adds 1/8 in. to binding side of all
141% even-numbered pages when the "twoside" printing option is selected
142\setlength{\oddsidemargin}{0.125in} % Adds 1/8 in. to the left of all pages
143% when "oneside" printing is selected, and to the left of all odd-numbered
144% pages when "twoside" printing is selected
145\setlength{\textwidth}{6.375in} % assuming US letter paper (8.5 in. x 11 in.) and
146% side margins as above
147\raggedbottom
148
149% The following statement specifies the amount of space between
150% paragraphs. Other reasonable specifications are \bigskipamount and \smallskipamount.
151\setlength{\parskip}{\medskipamount}
152
153% The following statement controls the line spacing.  The default
154% spacing corresponds to good typographic conventions and only slight
155% changes (e.g., perhaps "1.2"), if any, should be made.
156\renewcommand{\baselinestretch}{1} % this is the default line space setting
157
158% By default, each chapter will start on a recto (right-hand side)
159% page.  We also force each section of the front pages to start on
160% a recto page by inserting \cleardoublepage commands.
161% In many cases, this will require that the verso page be
162% blank and, while it should be counted, a page number should not be
163% printed.  The following statements ensure a page number is not
164% printed on an otherwise blank verso page.
165\let\origdoublepage\cleardoublepage
166\newcommand{\clearemptydoublepage}{%
167  \clearpage{\pagestyle{empty}\origdoublepage}}
168\let\cleardoublepage\clearemptydoublepage
169
170\newcounter{cit}
171\newcounter{todo}
172
173% \newcommand{\cit}{\textsuperscript{[Citation Needed]}\xspace}
174% \newcommand{\TODO}{{\large\bf\color{red} TODO: }\xspace}
175
176\newcommand\cit[1]{\refstepcounter{cit}\textsuperscript{[Citation Needed]}\xspace\addcontentsline{cit}{subsection}{\thecit~#1}}%
177\newcommand\todo[1]{\refstepcounter{todo}{{\large\bf\color{red} TODO: }\xspace\color{red}{#1}}\addcontentsline{todo}{subsection}{\thetodo~#1}}%
178
179\makeatletter
180\newcommand\citname{cit}
181\newcommand\listcitname{List of missing citations}
182\newcommand\listofcits{%
183  \section*{\listcitname}\@starttoc{cit}}
184\makeatother
185
186\makeatletter
187\newcommand\todoname{todo}
188\newcommand\listtodoname{List of todos}
189\newcommand\listoftodos{%
190  \section*{\listtodoname}\@starttoc{todo}}
191\makeatother
192
193% cfa macros used in the document
194\input{common}
195\CFAStyle                                               % CFA code-style for all languages
196\lstset{basicstyle=\linespread{0.9}\tt}
197
198% glossary of terms to use
199\input{glossary}
200\makeindex
201
202%======================================================================
203%   L O G I C A L    D O C U M E N T -- the content of your thesis
204%======================================================================
205\begin{document}
206
207% For a large document, it is a good idea to divide your thesis
208% into several files, each one containing one chapter.
209% To illustrate this idea, the "front pages" (i.e., title page,
210% declaration, borrowers' page, abstract, acknowledgements,
211% dedication, table of contents, list of tables, list of figures,
212% nomenclature) are contained within the file "uw-ethesis-frontpgs.tex" which is
213% included into the document by the following statement.
214%----------------------------------------------------------------------
215% FRONT MATERIAL
216%----------------------------------------------------------------------
217\input{text/front.tex}
218
219
220%----------------------------------------------------------------------
221% MAIN BODY
222%----------------------------------------------------------------------
223% Because this is a short document, and to reduce the number of files
224% needed for this template, the chapters are not separate
225% documents as suggested above, but you get the idea. If they were
226% separate documents, they would each start with the \chapter command, i.e,
227% do not contain \documentclass or \begin{document} and \end{document} commands.
228\part{Introduction}
229\input{text/intro.tex}
230\input{text/existing.tex}
231\input{text/runtime.tex}
232\part{Design}
233\input{text/core.tex}
234\input{text/practice.tex}
235\input{text/io.tex}
236\part{Evaluation}
237\label{Evaluation}
238\chapter{Theoretical and Existance Proofs}
239\chapter{Micro-Benchmarks}
240\chapter{Larger-Scale applications}
241\part{Conclusion \& Annexes}
242
243%----------------------------------------------------------------------
244% END MATERIAL
245%----------------------------------------------------------------------
246
247% B I B L I O G R A P H Y
248% -----------------------
249
250% The following statement selects the style to use for references.  It controls the sort order of the entries in the bibliography and also the formatting for the in-text labels.
251\bibliographystyle{plain}
252% This specifies the location of the file containing the bibliographic information.
253% It assumes you're using BibTeX (if not, why not?).
254\cleardoublepage % This is needed if the book class is used, to place the anchor in the correct page,
255                 % because the bibliography will start on its own page.
256                 % Use \clearpage instead if the document class uses the "oneside" argument
257\phantomsection  % With hyperref package, enables hyperlinking from the table of contents to bibliography
258% The following statement causes the title "References" to be used for the bibliography section:
259\renewcommand*{\bibname}{References}
260
261% Add the References to the Table of Contents
262\addcontentsline{toc}{chapter}{\textbf{References}}
263
264\bibliography{local,pl}
265% Tip 5: You can create multiple .bib files to organize your references.
266% Just list them all in the \bibliogaphy command, separated by commas (no spaces).
267
268% % The following statement causes the specified references to be added to the bibliography% even if they were not
269% % cited in the text. The asterisk is a wildcard that causes all entries in the bibliographic database to be included (optional).
270% \nocite{*}
271
272% The \appendix statement indicates the beginning of the appendices.
273\appendix
274% Add a title page before the appendices and a line in the Table of Contents
275\chapter*{APPENDICES}
276\addcontentsline{toc}{chapter}{APPENDICES}
277%======================================================================
278\chapter[PDF Plots From Matlab]{Matlab Code for Making a PDF Plot}
279\label{AppendixA}
280% Tip 4: Example of how to get a shorter chapter title for the Table of Contents
281%======================================================================
282\section{Using the GUI}
283Properties of Matab plots can be adjusted from the plot window via a graphical interface. Under the Desktop menu in the Figure window, select the Property Editor. You may also want to check the Plot Browser and Figure Palette for more tools. To adjust properties of the axes, look under the Edit menu and select Axes Properties.
284
285To set the figure size and to save as PDF or other file formats, click the Export Setup button in the figure Property Editor.
286
287\section{From the Command Line}
288All figure properties can also be manipulated from the command line. Here's an example:
289\begin{verbatim}
290x=[0:0.1:pi];
291hold on % Plot multiple traces on one figure
292plot(x,sin(x))
293plot(x,cos(x),'--r')
294plot(x,tan(x),'.-g')
295title('Some Trig Functions Over 0 to \pi') % Note LaTeX markup!
296legend('{\it sin}(x)','{\it cos}(x)','{\it tan}(x)')
297hold off
298set(gca,'Ylim',[-3 3]) % Adjust Y limits of "current axes"
299set(gcf,'Units','inches') % Set figure size units of "current figure"
300set(gcf,'Position',[0,0,6,4]) % Set figure width (6 in.) and height (4 in.)
301cd n:\thesis\plots % Select where to save
302print -dpdf plot.pdf % Save as PDF
303\end{verbatim}
304
305% GLOSSARIES (Lists of definitions, abbreviations, symbols, etc. provided by the glossaries-extra package)
306% -----------------------------
307\printglossary
308\cleardoublepage
309
310% Index
311% -----------------------------
312%\input{thesis.ind}                             % index
313
314\phantomsection
315
316\end{document}
Note: See TracBrowser for help on using the repository browser.