Changeset 36a05d7 for doc/theses/thierry_delisle_PhD/thesis
- Timestamp:
- Nov 8, 2021, 5:29:49 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- 1622af5
- Parents:
- cc287800
- Location:
- doc/theses/thierry_delisle_PhD/thesis
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/thierry_delisle_PhD/thesis/Makefile
rcc287800 r36a05d7 20 20 practice \ 21 21 io \ 22 eval_micro \ 23 eval_macro \ 22 24 }} 23 25 … … 35 37 pivot_ring \ 36 38 system \ 39 cycle \ 37 40 } 38 41 -
doc/theses/thierry_delisle_PhD/thesis/thesis.tex
rcc287800 r36a05d7 1 1 %====================================================================== 2 % University of Waterloo Thesis Template for LaTeX 3 % Last Updated November, 2020 4 % by Stephen Carr, IST Client Services, 2 % University of Waterloo Thesis Template for LaTeX 3 % Last Updated November, 2020 4 % by Stephen Carr, IST Client Services, 5 5 % University of Waterloo, 200 University Ave. W., Waterloo, Ontario, Canada 6 6 % FOR ASSISTANCE, please send mail to request@uwaterloo.ca … … 15 15 % Some important notes on using this template and making it your own... 16 16 17 % The University of Waterloo has required electronic thesis submission since October 2006. 17 % The University of Waterloo has required electronic thesis submission since October 2006. 18 18 % See the uWaterloo thesis regulations at 19 19 % https://uwaterloo.ca/graduate-studies/thesis. 20 20 % This thesis template is geared towards generating a PDF version optimized for viewing on an electronic display, including hyperlinks within the PDF. 21 21 22 % DON'T FORGET TO ADD YOUR OWN NAME AND TITLE in the "hyperref" package configuration below. 22 % DON'T FORGET TO ADD YOUR OWN NAME AND TITLE in the "hyperref" package configuration below. 23 23 % THIS INFORMATION GETS EMBEDDED IN THE PDF FINAL PDF DOCUMENT. 24 24 % You can view the information if you view properties of the PDF document. 25 25 26 % Many faculties/departments also require one or more printed copies. 27 % This template attempts to satisfy both types of output. 26 % Many faculties/departments also require one or more printed copies. 27 % This template attempts to satisfy both types of output. 28 28 % See additional notes below. 29 29 % It is based on the standard "book" document class which provides all necessary sectioning structures and allows multi-part theses. … … 32 32 33 33 % For people who prefer to install their own LaTeX distributions on their own computers, and process the source files manually, the following notes provide the sequence of tasks: 34 34 35 35 % E.g. to process a thesis called "mythesis.tex" based on this template, run: 36 36 37 37 % pdflatex mythesis -- first pass of the pdflatex processor 38 38 % bibtex mythesis -- generates bibliography from .bib data file(s) 39 % makeindex -- should be run only if an index is used 39 % makeindex -- should be run only if an index is used 40 40 % pdflatex mythesis -- fixes numbering in cross-references, bibliographic references, glossaries, index, etc. 41 41 % pdflatex mythesis -- it takes a couple of passes to completely process all cross-references 42 42 43 43 % If you use the recommended LaTeX editor, Texmaker, you would open the mythesis.tex file, then click the PDFLaTeX button. Then run BibTeX (under the Tools menu). 44 % Then click the PDFLaTeX button two more times. 44 % Then click the PDFLaTeX button two more times. 45 45 % If you have an index as well,you'll need to run MakeIndex from the Tools menu as well, before running pdflatex 46 46 % the last two times. … … 51 51 % Tip: Photographs should be cropped and compressed so as not to be too large. 52 52 53 % To create a PDF output that is optimized for double-sided printing: 53 % To create a PDF output that is optimized for double-sided printing: 54 54 % 1) comment-out the \documentclass statement in the preamble below, and un-comment the second \documentclass line. 55 55 % 2) change the value assigned below to the boolean variable "PrintVersion" from " false" to "true". … … 67 67 % If you have to, it's easier to make changes to nomenclature once here than in a million places throughout your thesis! 68 68 \newcommand{\package}[1]{\textbf{#1}} % package names in bold text 69 \newcommand{\cmmd}[1]{\textbackslash\texttt{#1}} % command name in tt font 69 \newcommand{\cmmd}[1]{\textbackslash\texttt{#1}} % command name in tt font 70 70 \newcommand{\href}[1]{#1} % does nothing, but defines the command so the print-optimized version will ignore \href tags (redefined by hyperref pkg). 71 71 %\newcommand{\texorpdfstring}[2]{#1} % does nothing, but defines the command … … 235 235 \part{Evaluation} 236 236 \label{Evaluation} 237 \chapter{Theoretical and Existance Proofs}238 \ chapter{Micro-Benchmarks}239 \ chapter{Larger-Scale applications}237 % \chapter{Theoretical and Existance Proofs} 238 \input{text/eval_micro.tex} 239 \input{text/eval_macro.tex} 240 240 \part{Conclusion \& Annexes} 241 241
Note: See TracChangeset
for help on using the changeset viewer.