source: doc/proposals/concurrency/thesis.tex @ cae28da

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since cae28da was cae28da, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Finished reviewing thesis

  • Property mode set to 100644
File size: 4.3 KB
Line 
1% requires tex packages: texlive-base texlive-latex-base tex-common texlive-humanities texlive-latex-extra texlive-fonts-recommended
2
3% inline code �...� (copyright symbol) emacs: C-q M-)
4% red highlighting �...� (registered trademark symbol) emacs: C-q M-.
5% blue highlighting �...� (sharp s symbol) emacs: C-q M-_
6% green highlighting �...� (cent symbol) emacs: C-q M-"
7% LaTex escape �...� (section symbol) emacs: C-q M-'
8% keyword escape �...� (pilcrow symbol) emacs: C-q M-^
9% math escape $...$ (dollar symbol)
10
11\documentclass[letterpaper,12pt,titlepage,oneside,final]{book}
12
13%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14
15% Latex packages used in the document.
16\usepackage[T1]{fontenc}                                        % allow Latin1 (extended ASCII) characters
17\usepackage{textcomp}
18\usepackage[latin1]{inputenc}
19\usepackage{fullpage,times,comment}
20\usepackage{epic,eepic}
21\usepackage{upquote}                                            % switch curled `'" to straight
22\usepackage{dirtytalk}
23\usepackage{calc}
24\usepackage{xspace}
25\usepackage[labelformat=simple]{subfig}
26\renewcommand{\thesubfigure}{(\alph{subfigure})}
27\usepackage{graphicx}
28\usepackage{tabularx}
29\usepackage{multicol}
30\usepackage[acronym]{glossaries}
31\usepackage{varioref}
32\usepackage{listings}                                           % format program code
33\usepackage[flushmargin]{footmisc}                              % support label/reference in footnote
34\usepackage{latexsym}                                           % \Box glyph
35\usepackage{mathptmx}                                           % better math font with "times"
36\usepackage[usenames]{color}
37\usepackage[pagewise]{lineno}
38\usepackage{fancyhdr}
39\usepackage{float}
40\renewcommand{\linenumberfont}{\scriptsize\sffamily}
41\usepackage{siunitx}
42\sisetup{ binary-units=true }
43\input{style}                                                   % bespoke macros used in the document
44\usepackage[dvips,plainpages=false,pdfpagelabels,pdfpagemode=UseNone,colorlinks=true,pagebackref=true,linkcolor=blue,citecolor=blue,urlcolor=blue,pagebackref=true,breaklinks=true]{hyperref}
45%\usepackage{breakurl}
46\urlstyle{tt}
47
48\usepackage{tikz}
49\def\checkmark{\tikz\fill[scale=0.4](0,.35) -- (.25,0) -- (1,.7) -- (.25,.15) -- cycle;}
50
51\renewcommand{\UrlFont}{\small\sf}
52
53\setlength{\topmargin}{-0.45in}                         % move running title into header
54\setlength{\headsep}{0.25in}
55
56%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
57
58% Names used in the document.
59
60\newcommand{\Version}{1.0.0}
61\newcommand{\CS}{C\raisebox{-0.9ex}{\large$^\sharp$}\xspace}
62
63\newcommand{\Textbf}[2][red]{{\color{#1}{\textbf{#2}}}}
64\newcommand{\Emph}[2][red]{{\color{#1}\textbf{\emph{#2}}}}
65\newcommand{\R}[1]{\Textbf{#1}}
66\newcommand{\B}[1]{{\Textbf[blue]{#1}}}
67\newcommand{\G}[1]{{\Textbf[OliveGreen]{#1}}}
68\newcommand{\uC}{$\mu$\CC}
69\newcommand{\cit}{\textsuperscript{[Citation Needed]}\xspace}
70\newcommand{\TODO}{{\Textbf{TODO}}}
71
72\input{glossary}
73
74\newsavebox{\LstBox}
75
76%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
77
78\setcounter{secnumdepth}{2}                           % number subsubsections
79\setcounter{tocdepth}{2}                              % subsubsections in table of contents
80% \linenumbers                                          % comment out to turn off line numbering
81\makeindex
82\pagestyle{fancy}
83\fancyhf{}
84\cfoot{\thepage}
85\rfoot{v\input{version}}
86
87
88
89%======================================================================
90%   L O G I C A L    D O C U M E N T -- the content of your thesis
91%======================================================================
92\begin{document}
93
94% For a large document, it is a good idea to divide your thesis
95% into several files, each one containing one chapter.
96% To illustrate this idea, the "front pages" (i.e., title page,
97% declaration, borrowers' page, abstract, acknowledgements,
98% dedication, table of contents, list of tables, list of figures,
99% nomenclature) are contained within the file "thesis-frontpgs.tex" which is
100% included into the document by the following statement.
101%----------------------------------------------------------------------
102% FRONT MATERIAL
103%----------------------------------------------------------------------
104\input{frontpgs}
105
106%----------------------------------------------------------------------
107% MAIN BODY
108%----------------------------------------------------------------------
109
110\input{intro}
111
112\input{cforall}
113
114\input{basics}
115
116\input{concurrency}
117
118\input{parallelism}
119
120\input{internals}
121
122\input{together}
123
124\input{results}
125
126\input{future}
127
128\clearpage
129\printglossary[type=\acronymtype]
130\printglossary
131
132\clearpage
133\bibliographystyle{plain}
134\bibliography{pl,local}
135
136
137\end{document}
Note: See TracBrowser for help on using the repository browser.