-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
61 lines (46 loc) · 1.16 KB
/
thesis.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
%for a more compact document, add the option openany to avoid
%starting all chapters on odd numbered pages
\documentclass[12pt,openany,dvipsnames]{cmuthesis}
\input{macros.tex}
\newtoggle{dev}
%\togglefalse{dev}
\toggletrue{dev}
\iftoggle{dev}{
\includeonly{chapter-intro}
}
\iftoggle{dev}{
\draftstamp{\rm \today}{\rm DRAFT}
}
\begin {document}
\frontmatter
\pagestyle{empty}
\include{titlepage} %
%\include{dedication}
\pagestyle{plain}
%\include{abstract}
\iftoggle{dev}{}{\tableofcontents}
\mainmatter
%% Double space document for easy review:
%\renewcommand{\baselinestretch}{1.66}\normalsize
\include{chapter-intro}
\include{chapter-prop}
\include{chapter-fol}
\include{chapter-constr}
\include{chapter-aws}
\include{chapter-modal}
\include{chapter-sub}
\appendix
\backmatter
%% Only show the bibliography in non-dev mode.
\iftoggle{dev}{}{
% By default \bibsection is \chapter*, but we really want this to show
% up in the table of contents and pdf bookmarks.
\renewcommand{\bibsection}{\chapter{\bibname}}
\bibliographystyle{alphaurl}
\bibliography{refs}
}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: