-
Notifications
You must be signed in to change notification settings - Fork 1
/
thesis.tex
113 lines (75 loc) · 2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
\documentclass[12pt]{memoir}
\usepackage{latexsym,amsmath,amsfonts,amssymb,amsthm}
\usepackage{url}
\usepackage[style=alphabetic,natbib=true,backend=bibtex,maxbibnames=99]{biblatex}
\usepackage[colorlinks=true]{hyperref}
\usepackage[nameinlink,capitalize,noabbrev]{cleveref}
\usepackage{graphicx}
\RequirePackage[T1]{fontenc}
\RequirePackage[tt=false,type1=true]{libertine}
\RequirePackage[varqu]{zi4}
\RequirePackage[libertine]{newtxmath}
\usepackage{microtype}
\usepackage{cmutr}
\setlrmarginsandblock{1.25in}{*}{1}
\setulmarginsandblock{1.5in}{*}{1}
\setheaderspaces{*}{2\onelineskip}{*}
\checkandfixthelayout
% Check out the memoir manual for other chapter styles.
\chapterstyle{default}
% Include the bibliography in the table of contents.
\defbibheading{bibliography}[\bibname]{%
\chapter*{#1}%
\markboth{#1}{#1}%
\addcontentsline{toc}{chapter}{\bibname}}
\setsecnumdepth{subsection}
\newcommand{\draftstamp}{\textcolor{red}{(\number\month/\number\day/\the\year)}}
\nouppercaseheads
\makepagestyle{nonumbers}
\createmark{chapter}{left}{nonumber}{}{}
\createmark{section}{right}{nonumber}{}{}
\makeevenhead{nonumbers}{\thepage\qquad{\itshape\leftmark}}{\draftstamp}{}
\makeoddhead{nonumbers}{}{\draftstamp}{{\itshape\rightmark}\qquad\thepage}
\addbibresource{bibliography.bib}
\begin{document}
\frontmatter
\pagestyle{empty}
\title{\textbf{Title}}
\author{Author}
\date{\draftstamp}
\Year{20XX}
\trnumber{CMU-CS-TODO}
\committee{
Sleve McDichael, Chair \\
Dwigt Rortugal \\
Bobson Dugnutt \\
Todd Bonzalez, Fighting Baseball University
}
\support{Research credit statement.}
\keywords{Topic, Another Topic}
\maketitle
\pagestyle{nonumbers}
\begin{abstract}
Abstract.
\end{abstract}
\chapter{Acknowledgements}
Text.
\cleardoublepage
\tableofcontents
\mainmatter
\chapter{Introduction}
Text.
\section{Section name}
Text \citep{HoTT13}.
\clearpage
Sample left page.
\clearpage
Sample right page.
\chapter{Stuff}
Stuff.
\appendix
\chapter{More stuff}
foo
\backmatter
\printbibliography
\end{document}