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

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 cf966b5 was cf966b5, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Results need to be updated but otherwise, tentative final draft

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