-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYourName-thesis.tex
166 lines (129 loc) · 5.83 KB
/
YourName-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
162
163
164
165
166
\documentclass[12pt, % font size: 11pt or 12pt
ms, % degree: ms or phd
doublespacing % spacing: onehalfspacing or doublespacing
]{ncsuthesis}
%%----------------------------------------------------------------------------%%
%%------------------------------ Import Packages -----------------------------%%
%%----------------------------------------------------------------------------%%
\usepackage{booktabs} % professionally typeset tables
\usepackage{amsmath}
\usepackage{textcomp} % better copyright sign, among other things
\usepackage{xcolor}
\usepackage{lipsum} % filler text
\usepackage{subfig} % composite figures
\usepackage[square, numbers]{natbib}
\usepackage{listings}
\usepackage{url}
%%----------------------------------------------------------------------------%%
%%---------------------------- Formatting Options ----------------------------%%
%%----------------------------------------------------------------------------%%
%%
%% -------------------------------------------------------------------------- %%
%% Disposition format -- any titles, headings, section titles
%% These formatting commands affect all headings, titles, headings,
%% so sizing commands should not be used here.
%% Formatting options to consider are
%% + \sffamily - sans serif fonts. Dispositions are often typeset in
%% sans serif, so this is a good option.
%% + \rmfamily - serif fonts
%% + \bfseries - bold face
%\dispositionformat{\sffamily\bfseries} % bold and sans serif
\dispositionformat{\bfseries} % bold and serif
%% -------------------------------------------------------------------------- %%
%% Formatting for centered headings - Abstract, Dedication, etc. headings
%% This is where one might put a sizing command.
%% \MakeUppercase can be used to typeset all headings in uppercase.
\headingformat{\large\MakeUppercase} % All letters uppercase
%\headingformat{\large} % Not all uppercase
%\headingformat{\Large\scshape} % Small Caps, used with serif fonts.
%% Typographers recommend using a normal inter-word space after
%% sentences. TeX's default is to add an wider space, but \frenchspacing
%% gives a normal spacing. Comment out the following line if you prefer
%% wider spaces between sentences.
\frenchspacing
%% -------------------------------------------------------------------------- %%
%% Optional packages
%% A number of compatible packages to improve the look and feel of
%% your document are available in the file optional.tex
%% (For example, hyperlinks, fancy chapter headings, and fonts)
%% To use these options, uncomment the next line and see optional.tex
%\include{optional}
%%----------------------------------------------------------------------------%%
%%---------------------------- Content Options -------------------------------%%
%%----------------------------------------------------------------------------%%
%% Size of committee: 3, 4, 5, or 6 -- this number includes the chair
\committeesize{3}
%% Members of committee
%% Each of the following member commands takes an optional argument
%% to specify their role on the committee.
%% For co-chairs, use the commands:
%% \cochairI{Doug Dodd}
%% \cochairII{Chris Cox}
%%
\chair{Dr. Robert St. Amant}
\memberI{Dr. Edward F. Gehringer}
\memberII{Dr. Christopher G. Healey}
%% Student writing thesis, \student{First Middle}{Last}
\student{Shishir Mahesh}{Kakaraddi} % a full middle name
%\student{John M.}{Smith} % a middle initial
%% Degree program
\program{Computer Science}
%% Thesis Title
%% Keep in mind, according to ETD guidelines:
%% + Capitalize first letter of important words.
%% + Use inverted pyramid shape if title spans more than one line.
%%
%% Note: To break the title onto multiple lines, use \break instead of \\.
\thesistitle{A Comparison of Summarization Techniques for Small Sets of Micro Blogs}
%% Degree year. Necessary if your degree year doesn't equal the current year.
%\degreeyear{1995}
%%----------------------------------------------------------------------------%%
%%---------------------------- Personal Macros -------------------------------%%
%%----------------------------------------------------------------------------%%
%% A central location to add your favorite macros.
%% A few examples to get you started.
\newcommand{\uv}[1]{\ensuremath{\mathbf{\hat{#1}}}}
\newcommand{\bo}{\ensuremath{\boldsymbol{\Omega}}}
\newcommand{\eref}[1]{Eq.~\ref{#1}}
\newcommand{\fref}[1]{Figure~\ref{#1}}
\newcommand{\tref}[1]{Table~\ref{#1}}
%%---------------------------------------------------------------------------%%
\begin{document}
%%---------------------------------------------------------------------------%%
\frontmatter
\include{front}
%%---------------------------------------------------------------------------%%
\mainmatter
\include{Chapter-1/Chapter-1}
\include{Chapter-2/Chapter-2}
\include{Chapter-3/Chapter-3}
\include{Chapter-4/Chapter-4}
\include{Chapter-5/Chapter-5}
\include{Chapter-6/Chapter-6}
%%---------------------------------------------------------------------------%%
%% Bibliography
%% You can use the bibitem list.
%\bibliographystyle{unsrt}
%\begin{thebibliography}{99}
%\bibitem{cb02}
%Casella, G. and Berger, R.L. (2002)
%\newblock {\it Statistical Inference, Second Edition.}
%Duxbury Press, Belmont, CA.
%
%\bibitem{t06}
%Tsiatis, A.A. (2006)
%\newblock {\it Semiparametric Theory and Missing Data.}
%Springer, New York.
%
%\end{thebibliography}
%% or use BibTeX
\bibliography{YourName-thesis}{}
\bibliographystyle{plainnat}
%%---------------------------------------------------------------------------%%
% Appendices
\appendix
\include{Appendix-A/Appendix-A}
\include{Appendix-A/Appendix-B}
%%---------------------------------------------------------------------------%%
\backmatter
\end{document}