1 | % T I T L E P A G E
|
---|
2 | % -------------------
|
---|
3 | % Last updated June 14, 2017, by Stephen Carr, IST-Client Services
|
---|
4 | % The title page is counted as page `i' but we need to suppress the
|
---|
5 | % page number. Also, we don't want any headers or footers.
|
---|
6 | \pagestyle{empty}
|
---|
7 | \pagenumbering{roman}
|
---|
8 |
|
---|
9 | % The contents of the title page are specified in the "titlepage"
|
---|
10 | % environment.
|
---|
11 | \begin{titlepage}
|
---|
12 | \begin{center}
|
---|
13 | \vspace*{1.0cm}
|
---|
14 | % TODO: punch up the title, thinking getting interest in the department-wide posting of my presentation
|
---|
15 | % Modern collections for C
|
---|
16 | \Huge
|
---|
17 | {\bf \CFA Container Library }
|
---|
18 |
|
---|
19 | \vspace*{1.0cm}
|
---|
20 |
|
---|
21 | \normalsize
|
---|
22 | by \\
|
---|
23 |
|
---|
24 | \vspace*{1.0cm}
|
---|
25 |
|
---|
26 | \Large
|
---|
27 | Michael Leslie Brooks \\
|
---|
28 |
|
---|
29 | \vspace*{3.0cm}
|
---|
30 |
|
---|
31 | \normalsize
|
---|
32 | A thesis \\
|
---|
33 | presented to the University of Waterloo \\
|
---|
34 | in fulfillment of the \\
|
---|
35 | thesis requirement for the degree of \\
|
---|
36 | Master of Mathematics \\
|
---|
37 | in \\
|
---|
38 | Computer Science \\
|
---|
39 |
|
---|
40 | \vspace*{2.0cm}
|
---|
41 |
|
---|
42 | Waterloo, Ontario, Canada, 2022 \\
|
---|
43 |
|
---|
44 | \vspace*{1.0cm}
|
---|
45 |
|
---|
46 | \copyright\ Michael Leslie Brooks 2022 \\
|
---|
47 | \end{center}
|
---|
48 | \end{titlepage}
|
---|
49 |
|
---|
50 | % The rest of the front pages should contain no headers and be numbered using Roman numerals starting with `ii'
|
---|
51 | \pagestyle{plain}
|
---|
52 | \setcounter{page}{2}
|
---|
53 |
|
---|
54 | \cleardoublepage % Ends the current page and causes all figures and tables that have so far appeared in the input to be printed.
|
---|
55 | % In a two-sided printing style, it also makes the next page a right-hand (odd-numbered) page, producing a blank page if necessary.
|
---|
56 |
|
---|
57 |
|
---|
58 |
|
---|
59 |
|
---|
60 | % D E C L A R A T I O N P A G E
|
---|
61 | % -------------------------------
|
---|
62 | % The following is a sample Delaration Page as provided by the GSO
|
---|
63 | % December 13th, 2006. It is designed for an electronic thesis.
|
---|
64 | \noindent
|
---|
65 | I hereby declare that I am the sole author of this thesis. This is a true copy of the thesis, including any required final revisions, as accepted by my examiners.
|
---|
66 |
|
---|
67 | \bigskip
|
---|
68 |
|
---|
69 | \noindent
|
---|
70 | I understand that my thesis may be made electronically available to the public.
|
---|
71 |
|
---|
72 | \cleardoublepage
|
---|
73 |
|
---|
74 | % A B S T R A C T
|
---|
75 | % ---------------
|
---|
76 |
|
---|
77 | \begin{center}\textbf{Abstract}\end{center}
|
---|
78 |
|
---|
79 | TODO
|
---|
80 |
|
---|
81 | \cleardoublepage
|
---|
82 |
|
---|
83 | % A C K N O W L E D G E M E N T S
|
---|
84 | % -------------------------------
|
---|
85 |
|
---|
86 | \begin{center}\textbf{Acknowledgements}\end{center}
|
---|
87 |
|
---|
88 | TODO.
|
---|
89 | \cleardoublepage
|
---|
90 |
|
---|
91 | % D E D I C A T I O N
|
---|
92 | % -------------------
|
---|
93 |
|
---|
94 | \begin{center}\textbf{Dedication}\end{center}
|
---|
95 |
|
---|
96 | TODO.
|
---|
97 | \cleardoublepage
|
---|
98 |
|
---|
99 | % T A B L E O F C O N T E N T S
|
---|
100 | % ---------------------------------
|
---|
101 | \renewcommand\contentsname{Table of Contents}
|
---|
102 | \tableofcontents
|
---|
103 | \cleardoublepage
|
---|
104 | \phantomsection % allows hyperref to link to the correct page
|
---|
105 |
|
---|
106 | % L I S T O F T A B L E S
|
---|
107 | % ---------------------------
|
---|
108 | \addcontentsline{toc}{chapter}{List of Tables}
|
---|
109 | \listoftables
|
---|
110 | \cleardoublepage
|
---|
111 | \phantomsection % allows hyperref to link to the correct page
|
---|
112 |
|
---|
113 | % L I S T O F F I G U R E S
|
---|
114 | % -----------------------------
|
---|
115 | \addcontentsline{toc}{chapter}{List of Figures}
|
---|
116 | \listoffigures
|
---|
117 | \cleardoublepage
|
---|
118 | \phantomsection % allows hyperref to link to the correct page
|
---|
119 |
|
---|
120 | % GLOSSARIES (Lists of definitions, abbreviations, symbols, etc. provided by the glossaries-extra package)
|
---|
121 | % -----------------------------
|
---|
122 | \printglossaries
|
---|
123 | \cleardoublepage
|
---|
124 | \phantomsection % allows hyperref to link to the correct page
|
---|
125 |
|
---|
126 | % Change page numbering back to Arabic numerals
|
---|
127 | \pagenumbering{arabic}
|
---|
128 |
|
---|