-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
40 lines (26 loc) · 833 Bytes
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
\documentclass[12pt,letterpaper]{report}
\usepackage{CU-thesis}
\graphicspath{{./img/}} % Change as necessary
\newcommand{\thesistitleI}{Thesis Title Line One}
\newcommand{\thesistitleII}{Optional Second Line}
\newcommand{\myname}{Adam Shen}
\begin{document}
% To get list of algorithms into the TOC - from `algorithms` documentation
\renewcommand{\listofalgorithms}{\begingroup
\tocfile{List of Algorithms}{loa}
\endgroup}
\makeatletter
\let\l@algorithm\l@figure
\makeatother
% Compile specified chapters only
%\includeonly{ch0-frontmatter,ch1-introduction}
\pagenumbering{roman}
\include{ch0-frontmatter}
\pagenumbering{arabic}
\include{ch1-introduction}
\include{ch2-content}
\nocite{*}
\bibliographystyle{unsrtnat}
\bibliography{bibliography}
\label{endmainmatter} % For automatic counting of pages
\end{document}