forked from lotten/uci-thesis-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
preliminaries.tex
144 lines (111 loc) · 3.8 KB
/
preliminaries.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
\thesistitle{Title of the Thesis}
\degreename{Doctor of Philosophy}
% Use the wording given in the official list of degrees awarded by UCI:
% http://www.rgs.uci.edu/grad/academic/degrees_offered.htm
\degreefield{Computer Science}
% Your name as it appears on official UCI records.
\authorname{Your name}
% Use the full name of each committee member.
\committeechair{Professor A}
\othercommitteemembers
{
Professor B\\
Professor C
}
\degreeyear{2012}
\copyrightdeclaration
{
{\copyright} {\Degreeyear} \Authorname
}
% If you have previously published parts of your manuscript, you must list the
% copyright holders; see Section 3.2 of the UCI Thesis and Dissertation Manual.
% Otherwise, this section may be omitted.
% \prepublishedcopyrightdeclaration
% {
% Chapter 4 {\copyright} 2003 Springer-Verlag \\
% Portion of Chapter 5 {\copyright} 1999 John Wiley \& Sons, Inc. \\
% All other materials {\copyright} {\Degreeyear} \Authorname
% }
% The dedication page is optional.
\dedications
{
(Optional dedication page)
To ...
}
\acknowledgments
{
I would like to thank...
(You must acknowledge grants and other funding assistance.
You may also acknowledge the contributions of professors and
friends.
You also need to acknowledge any publishers of your previous
work who have given you permission to incorporate that work
into your dissertation. See Section 3.2 of the UCI Thesis and
Dissertation Manual.)
}
% Some custom commands for your list of publications and software.
\newcommand{\mypubentry}[3]{
\begin{tabular*}{1\textwidth}{@{\extracolsep{\fill}}p{4.5in}r}
\textbf{#1} & \textbf{#2} \\
\multicolumn{2}{@{\extracolsep{\fill}}p{.95\textwidth}}{#3}\vspace{6pt} \\
\end{tabular*}
}
\newcommand{\mysoftentry}[3]{
\begin{tabular*}{1\textwidth}{@{\extracolsep{\fill}}lr}
\textbf{#1} & \url{#2} \\
\multicolumn{2}{@{\extracolsep{\fill}}p{.95\textwidth}}
{\emph{#3}}\vspace{-6pt} \\
\end{tabular*}
}
% Include, at minimum, a listing of your degrees and educational
% achievements with dates and the school where the degrees were
% earned. This should include the degree currently being
% attained. Other than that it's mostly up to you what to include here
% and how to format it, below is just an example.
\curriculumvitae
{
\textbf{EDUCATION}
\begin{tabular*}{1\textwidth}{@{\extracolsep{\fill}}lr}
\textbf{Doctor of Philosophy in Computer Science} & \textbf{2012} \\
\vspace{6pt}
University name & \emph{City, State} \\
\textbf{Bachelor of Science in Computational Sciences} & \textbf{2007} \\
\vspace{6pt}
Another university name & \emph{City, State} \\
\end{tabular*}
\vspace{12pt}
\textbf{RESEARCH EXPERIENCE}
\begin{tabular*}{1\textwidth}{@{\extracolsep{\fill}}lr}
\textbf{Graduate Research Assistant} & \textbf{2007--2012} \\
\vspace{6pt}
University of California, Irvine & \emph{Irvine, California} \\
\end{tabular*}
\vspace{12pt}
\textbf{TEACHING EXPERIENCE}
\begin{tabular*}{1\textwidth}{@{\extracolsep{\fill}}lr}
\textbf{Teaching Assistant} & \textbf{2009--2010} \\
\vspace{6pt}
University name & \emph{City, State} \\
\end{tabular*}
\pagebreak
\textbf{REFEREED JOURNAL PUBLICATIONS}
\mypubentry{Ground-breaking article}{2012}{Journal name}
\vspace{12pt}
\textbf{REFEREED CONFERENCE PUBLICATIONS}
\mypubentry{Awesome paper}{Jun 2011}{Conference name}
\mypubentry{Another awesome paper}{Aug 2012}{Conference name}
\vspace{12pt}
\textbf{SOFTWARE}
\mysoftentry{Magical tool}{http://your.url.here/}
{C++ algorithm that solves TSP in polynomial time.}
}
% The abstract should not be over 350 words, although that's
% supposedly somewhat of a soft constraint.
\thesisabstract
{
The abstract of your contribution goes here.
}
%%% Local Variables: ***
%%% mode: latex ***
%%% TeX-master: "thesis.tex" ***
%%% End: ***