Changeset 36a05d7 for doc/theses


Ignore:
Timestamp:
Nov 8, 2021, 5:29:49 PM (2 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
Children:
1622af5
Parents:
cc287800
Message:

Started doing some work on the eval portion of my thesis.

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  
    2020        practice \
    2121        io \
     22        eval_micro \
     23        eval_macro \
    2224}}
    2325
     
    3537        pivot_ring \
    3638        system \
     39        cycle \
    3740}
    3841
  • doc/theses/thierry_delisle_PhD/thesis/thesis.tex

    rcc287800 r36a05d7  
    11%======================================================================
    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,
    55% University of Waterloo, 200 University Ave. W., Waterloo, Ontario, Canada
    66% FOR ASSISTANCE, please send mail to request@uwaterloo.ca
     
    1515% Some important notes on using this template and making it your own...
    1616
    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.
    1818% See the uWaterloo thesis regulations at
    1919% https://uwaterloo.ca/graduate-studies/thesis.
    2020% This thesis template is geared towards generating a PDF version optimized for viewing on an electronic display, including hyperlinks within the PDF.
    2121
    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.
    2323% THIS INFORMATION GETS EMBEDDED IN THE PDF FINAL PDF DOCUMENT.
    2424% You can view the information if you view properties of the PDF document.
    2525
    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.
    2828% See additional notes below.
    2929% It is based on the standard "book" document class which provides all necessary sectioning structures and allows multi-part theses.
     
    3232
    3333% 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
    3535% E.g. to process a thesis called "mythesis.tex" based on this template, run:
    3636
    3737% pdflatex mythesis     -- first pass of the pdflatex processor
    3838% 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
    4040% pdflatex mythesis     -- fixes numbering in cross-references, bibliographic references, glossaries, index, etc.
    4141% pdflatex mythesis     -- it takes a couple of passes to completely process all cross-references
    4242
    4343% 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.
    4545% If you have an index as well,you'll need to run MakeIndex from the Tools menu as well, before running pdflatex
    4646% the last two times.
     
    5151% Tip: Photographs should be cropped and compressed so as not to be too large.
    5252
    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:
    5454% 1) comment-out the \documentclass statement in the preamble below, and un-comment the second \documentclass line.
    5555% 2) change the value assigned below to the boolean variable "PrintVersion" from " false" to "true".
     
    6767% If you have to, it's easier to make changes to nomenclature once here than in a million places throughout your thesis!
    6868\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
    7070\newcommand{\href}[1]{#1} % does nothing, but defines the command so the print-optimized version will ignore \href tags (redefined by hyperref pkg).
    7171%\newcommand{\texorpdfstring}[2]{#1} % does nothing, but defines the command
     
    235235\part{Evaluation}
    236236\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}
    240240\part{Conclusion \& Annexes}
    241241
Note: See TracChangeset for help on using the changeset viewer.