-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
161 lines (123 loc) · 4.41 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
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
\documentclass{ucbthesis}
\usepackage[maxbibnames=99]{biblatex}
%\usepackage[english]{babel}
%\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[noend]{algpseudocode}
% Double spacing, if you want it.
% \def\dsp{\def\baselinestretch{2.0}\large\normalsize}
% \dsp
\usepackage{amsmath,amssymb,enumitem,mathtools}
\usepackage{algorithm}
\usepackage{nomencl}
\usepackage{hyperref}
\usepackage{dirtytalk}
\usepackage{array}
\usepackage[utf8]{inputenc}
%\usepackage{subcaption}
%\usepackage{subfig}
\usepackage{amssymb}
\makenomenclature
\usepackage[table,xcdraw,svgnames]{xcolor}
%\usepackage{soul}
%\usepackage{natbib}
\usepackage{hyperref}
\hypersetup{
backref=true,
colorlinks=true,
breaklinks=true,
linkcolor= blue,
citecolor=red,
}
\usepackage{makeidx}
\usepackage{nomencl}
\usepackage{etoolbox}
\renewcommand\nomgroup[1]{%
\item[\bfseries
\ifstrequal{#1}{M}{Mathematical Models}{}
]}
\renewcommand{\subsubsection}{\@startsection{subsubsection}{3}{0pt}{6pt}{6pt}{\large\bfseries}}
\renewcommand{\thesubsubsection}{\arabic{subsubsection}. }
\setcounter{subsubsection}{0}%
\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{4}
% %% This code creates the groups
% % -----------------------------------------
% \usepackage{etoolbox}
% \renewcommand\nomgroup[1]{%
% \item[\bfseries
% \ifstrequal{#1}{P}{Physics Constants}{%
% \ifstrequal{#1}{N}{Number Sets}{%
% \ifstrequal{#1}{O}{Other Symbols}{}}}%
% ]}
% % -----------------------------------------
\renewcommand{\nomname}{List of Symbols}
\renewcommand{\nompreamble}{The next list describes several symbols that will be later used within the body of the document}
%\usepackage{cite}
% If the Grad. Division insists that the first paragraph of a section
% be indented (like the others), then include this line:
% \usepackage{indentfirst}
% \AtBeginDocument{\hypersetup{pdfborder={0 0 1}}}
\addbibresource{references.bib}
%\newtheorem{theorem}{Jibberish}
%\hyphenation{mar-gin-al-ia}
\begin{document}
% Declarations for Front Matter
\title{Notes while understanding Maximum Likelihood Estimates}
\author{Harsh Nilesh Pathak}
% \degreesemester{Fall}
% \degreeyear{2019}
% \degree{Master of Science}
%\chair{Professor Randy Paffenroth}
% \othermembers{Professor Roger Spam \\
% Associate Professor Michael Chex}
% \numberofmembers{3}
\prevdegrees{B.E. (University of Pune) 2017}
\field{Data Science}
\campus{Worcester}
% For a masters thesis, uncomment (remove the % at the beginning of)
% the following line. This affects the title and approval pages,
% which by default calls this a "dissertation", not a "thesis".
% \itsamasters
% The title page generated by LaTeX is now acceptable for handing in.
% (This was not always the case).
\maketitle
%\approvalpage
%\copyrightpage
\include{0_abstract}
\begin{frontmatter}
% \begin{dedication}
% \null\vfil
% \begin{center}
% To Ossie Bernosky\\\vspace{12pt}
% And exposition? Of go. No upstairs do fingering. Or obstructive, or purposeful.
% In the glitter. For so talented. Which is confines cocoa accomplished.
% Masterpiece as devoted. My primal the narcotic. For cine? To by recollection
% bleeding. That calf are infant. In clause. Be a popularly. A as midnight
% transcript alike. Washable an acre. To canned, silence in foreign.
% \end{center}
% \vfil\null
% \end{dedication}
\tableofcontents
\clearpage
%\listoffigures
%\clearpage
%\listoftables
% %\printnomenclature
% \begin{acknowledgements}
% I would like to express my sincere gratitude to my advisor Prof. Randy Paffenroth for his guidelines throughout my research thesis. Also, I would like to thank Xiaozhou Zou, whose collaboration was helpful for me to take correct initial steps and thus boost the research work for this thesis.
% \end{acknowledgements}
\end{frontmatter}
\pagestyle{headings}
% (Optional) \part{First Part}
\include{MLE}
\include{MAP}
\include{entropy}
\include{MLE_solver}
%\addbibresource{references}
%\bibliography{references}
\nocite{*}
\printbibliography
% \appendix
% \chapter{More Monticello Candidates}
\end{document}