source: doc/theses/mike_brooks_MMath/thesis.tex @ 8e819a9

ADTast-experimentalenumpthread-emulationqualifiedEnum
Last change on this file since 8e819a9 was 8e819a9, checked in by Michael Brooks <mlbrooks@…>, 2 years ago

Mike MMath initial

  • Property mode set to 100644
File size: 4.9 KB
Line 
1% based on:
2% uWaterloo Thesis Template for LaTeX
3% Last Updated June 14, 2017 by Stephen Carr, IST Client Services
4% FOR ASSISTANCE, please send mail to rt-IST-CSmathsci@ist.uwaterloo.ca
5
6\documentclass[letterpaper,12pt,titlepage,oneside,final]{book}
7
8\input{style/master}
9\input{glossary}
10
11\usepackage{subfiles}
12
13\begin{document}
14
15\input{thesis-frontpgs} 
16
17
18
19% %======================================================================
20% \chapter{Introduction}
21% %======================================================================
22
23% Tation exerci delenit ullamcorper at feugiat ullamcorper, ullamcorper elit vulputate iusto esse luptatum duis autem esse nulla qui. Volutpat praesent et at nisl ut in consequat blandit vel augue ut dolor illum facilisis zzril ipsum, augue odio, accumsan ea augue molestie lobortis zzril laoreet. Ex duis, te velit illum odio, nisl qui consequat aliquip qui blandit hendrerit. Ea dolor nonummy ullamcorper nulla lorem tation laoreet in ea, ullamcorper vel consequat zzril delenit quis dignissim, vulputate tincidunt ut."
24
25%======================================================================
26\chapter{Array}
27%======================================================================
28
29\section{Features Added}                                          \subfile{content/array/features/sec.tex}
30\section{Multidimensional implementation}   \label{toc:mdimpl}    \subfile{content/array/mdim/sec.tex}
31
32
33%======================================================================
34\chapter{String}
35%======================================================================
36
37\subfile{content/string/string-master.tex}
38
39
40
41% %----------------------------------------------------------------------
42% % END MATERIAL
43% %----------------------------------------------------------------------
44
45% % B I B L I O G R A P H Y
46% % -----------------------
47
48% % 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.
49% \bibliographystyle{plain}
50% % This specifies the location of the file containing the bibliographic information. 
51% % It assumes you're using BibTeX (if not, why not?).
52% \cleardoublepage % This is needed if the book class is used, to place the anchor in the correct page,
53%                  % because the bibliography will start on its own page.
54%                  % Use \clearpage instead if the document class uses the "oneside" argument
55% \phantomsection  % With hyperref package, enables hyperlinking from the table of contents to bibliography             
56% % The following statement causes the title "References" to be used for the bibliography section:
57% \renewcommand*{\bibname}{References}
58
59% % Add the References to the Table of Contents
60% \addcontentsline{toc}{chapter}{\textbf{References}}
61
62
63
64% \bibliography{thesis}
65% % Tip 5: You can create multiple .bib files to organize your references.
66% % Just list them all in the \bibliogaphy command, separated by commas (no spaces).
67
68% % The following statement causes the specified references to be added to the bibliography% even if they were not
69% % cited in the text. The asterisk is a wildcard that causes all entries in the bibliographic database to be included (optional).
70% \nocite{*}
71
72
73
74% % The \appendix statement indicates the beginning of the appendices.
75% \appendix
76% % Add a title page before the appendices and a line in the Table of Contents
77% \chapter*{APPENDICES}
78% \addcontentsline{toc}{chapter}{APPENDICES}
79% %======================================================================
80% \chapter[PDF Plots From Matlab]{Matlab Code for Making a PDF Plot}
81% \label{AppendixA}
82% % Tip 4: Example of how to get a shorter chapter title for the Table of Contents
83% %======================================================================
84% \section{Using the GUI}
85% Properties 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.
86
87% To set the figure size and to save as PDF or other file formats, click the Export Setup button in the figure Property Editor.
88
89% \section{From the Command Line}
90% All figure properties can also be manipulated from the command line. Here's an example:
91% \begin{verbatim}
92% x=[0:0.1:pi];
93% hold on % Plot multiple traces on one figure
94% plot(x,sin(x))
95% plot(x,cos(x),'--r')
96% plot(x,tan(x),'.-g')
97% title('Some Trig Functions Over 0 to \pi') % Note LaTeX markup!
98% legend('{\it sin}(x)','{\it cos}(x)','{\it tan}(x)')
99% hold off
100% set(gca,'Ylim',[-3 3]) % Adjust Y limits of "current axes"
101% set(gcf,'Units','inches') % Set figure size units of "current figure"
102% set(gcf,'Position',[0,0,6,4]) % Set figure width (6 in.) and height (4 in.)
103% cd n:\thesis\plots % Select where to save
104% print -dpdf plot.pdf % Save as PDF
105% \end{verbatim}
106
107\end{document}
Note: See TracBrowser for help on using the repository browser.