-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dissertation.tex
188 lines (143 loc) · 4.29 KB
/
Dissertation.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
% This document is designed to conform to the style and layout
% guidelines stipulated in the document "Preparing and Filing the
% Thesis or Dissertation" at
%
% http://www.gradstudies.ucdavis.edu/students/filing.html
%
% and in the sample dissertation title page at
%
% http://www.gradstudies.ucdavis.edu/students/sample_title.html
%
% ---Tyrrell McAllister
%
\input{LayoutPreamble.tex}
\usepackage{microtype}
\usepackage{booktabs}
\usepackage{float}
\usepackage[numbers,sort]{natbib}
\usepackage{graphicx}% more modern
\usepackage{amssymb}
\usepackage[boxruled]{algorithm2e}
\usepackage{mdframed}
\usepackage{lipsum}
\usepackage{amsthm}
%\usepackage{titlesec}
% \titleformat{\chapter}{\Huge\bfseries}{\chaptername\ \thechapter}{0pt}{\vskip 20pt\raggedright}%
% \titlespacing*{\subsection}
% {0pt}{5.5ex plus 1ex minus .2ex}{4.3ex plus .2ex}
% \titlespacing*{\subsubsection}
% {0pt}{5.5ex plus 1ex minus .2ex}{4.3ex plus .2ex}
\newtheoremstyle{mystyle}
{20pt}% ⟨Space above⟩
{25pt}% ⟨Space below⟩
{\normalfont}% ⟨Body font⟩
{}% ⟨Indent amount⟩
{\bf}% ⟨Theorem head font⟩
{.}% ⟨Punctuation after theorem head⟩
{.5em}% ⟨Space after theorem head⟩
{}% ⟨Theorem head spec (can be left empty, meaning ‘normal’)⟩
\theoremstyle{mystyle}
\newtheorem{theo}{Theorem}
\input{MacrosPreamble.tex}
%%% environments
\theoremstyle{mystyle}
\newtheorem{theorem}{Theorem}[section]
\theoremstyle{mystyle}
\newtheorem{hypothesis}{Hypothesis}[section]
\theoremstyle{mystyle}
\newtheorem{proposition}{Proposition}[section]
\theoremstyle{mystyle}
\newtheorem{corollary}{Corollary}[section]
\theoremstyle{mystyle}
\newtheorem{remark}{Remark}[section]
\theoremstyle{mystyle}
\newtheorem{thm}[theorem]{Theorem}
\theoremstyle{mystyle}
\newtheorem{defn}[theorem]{Definition}
\theoremstyle{mystyle}
\newtheorem{fact}[theorem]{Fact}
\theoremstyle{mystyle}
\newtheorem{prop}[theorem]{Proposition}
\theoremstyle{mystyle}
\newtheorem{lem}[theorem]{Lemma}
\SetKwComment{Comment}{[\,}{\,]}
\theoremstyle{mystyle}
\newtheorem{example}[theorem]{Example}
\numberwithin{equation}{section}
\numberwithin{theorem}{section}
\numberwithin{table}{section}
\numberwithin{figure}{section}
%%% use lowercase letters for subcaption labeling
\captionsetup[subfigure]{labelfont=rm}
\setcounter{tocdepth}{2}
\begin{document}
\frontmatter
\pagestyle{prelim}
% Redefine plain page style so that the first pages of chapters
% have desired page style.
%
\fancypagestyle{plain}{%
\fancyhf{}
\cfoot{-\thepage-}
}%
\input{TitlePage.tex}
\newpage
%%% (optional) copyright page <== this page is not numbered!
\thispagestyle{empty}
\begin{titlepage}
\vspace*{50em}
\begin{center}
\copyright \ First M.\ Last, 20XX. All rights reserved.
\end{center}
\end{titlepage}
\newpage
\stepcounter{page}
%%% (optional) dedication page
\thispagestyle{empty}
\vspace*{20em}
\begin{center}
To...
\end{center}
\newpage
% Begin Double Spacing
%
\doublespacing
\tableofcontents
\newpage
\input{Abstract.tex}
\newpage
\section*{Acknowledgments}
\input{Acknowledgments.tex}
\mainmatter
\pagestyle{maintext}
% Redefine plain page style so that the first pages of
% chapters have desired page style.
%
\fancypagestyle{plain}{%
\renewcommand{\headrulewidth}{0pt}
\fancyhf{}
\cfoot{\thepage}%%%
}%
\chapter{Introduction}
\label{ch:IntroductionLabel}
\input{chapters/Introduction.tex}
\chapter{The Inexact Epigraphical Cutting Plane Algorithm}
\label{ch:InexactEpiCuttingPlane}
\input{chapters/InexactEpiCuttingPlane.tex}
\chapter[Proximal Gradient With Error]{ Proximal Gradient With Error }
\label{ch:ProximalGradientError}
\input{chapters/ProximalGradientError.tex}
\chapter[Proximal Quasi Newton]{ Proximal Quasi Newton}%
\label{ch:ProximalGradientCurvature}
\input{chapters/ProximalGradientCurvature.tex}
\appendix
\chapter[A Title of Appendix A]{A Title of Appendix A}
\label{ch:AppendixALabel}
\input{chapters/AppendixAFileName.tex}
\chapter[A Title of Appendix A]{A Title of Appendix B}
\label{ch:AppendixBLabel}
\input{chapters/AppendixB.tex}
\backmatter
\bibliographystyle{amsalpha-fi-arxlast}
\bibliography{master}
\end{document}