-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis-main.tex
79 lines (64 loc) · 2.44 KB
/
thesis-main.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
\documentclass[mastersthesis,12pt]{wuthesis} %% LaTeX2e document.
%
% Use one of the following
% \documentclass[mastersthesis,12pt]{wuthesis}
% \documentclass[dscthesis,12pt]{wuthesis}
% \documentclass[phdthesis,12pt]{wuthesis}
%
% If you want to use other packages such as amstex, or epsfig
% \usepackage them here.
%
% epsfig and ellipsis are 'packages' for LaTeX2e and
% should be part of your distribution. If not talk to your
% sysadmin
\usepackage{epsfig}
\usepackage{ellipsis}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% These commands customize the `wuthesis' package for me
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Enter your official name
\renewcommand{\thesisauthor}{Ima Gooden-Reddi}
\renewcommand{\thesisauthorlastname}{Student's\_Last\_Name}
%% Enter your previous degrees
%% If you have no previous degrees remember to remove the comma too.
%\renewcommand{\thesisauthorpreviousdegrees}{, J.D.}
%% Enter department name
\renewcommand{\thesisdepartment}{Department of Computer Science and Engineering}
\renewcommand{\thesisfield}{Computer Science}
%% Enter date of graduation
\renewcommand{\thesismonth}{May}
\renewcommand{\thesisyear}{2012}
%% Enter title of thesis
\renewcommand{\thesistitle}{A Mock Thesis on the Proper Formatting of Theses and Dissertations for Engineering-Based Grad Students}
\renewcommand{\thesisshorttitle}{The Proper Format of Theses}
%% Enter the copyright holder ( DEFAULT is \thesisauthor )
%\renewcommand{\thesiscopyrightholder}{\thesisauthor}
%% Enter supervisor name
\renewcommand{\thesissupervisor}{Professor Katherine Doe}
\renewcommand{\thesiscommittee}{Katherine Doe, Chair \\
Michael Allen \\
Robert Edward Thomas}
%% Enter the dedication
\renewcommand{\thesisdedication}{Dedicated to my parents.}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% This paper is construced from other files. Each \include'd file
%% begins a chapter. This is done for easy developement and revision.
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\frontmatter
\include{thesis-front}
\mainmatter
\include{thesis-chapter1}
\include{thesis-chapter2}
\include{thesis-chapter3}
\appendix % now we start appendicies
\include{thesis-appendixA}
\include{thesis-appendixB}
\include{thesis-appendixC}
\include{thesis-appendixD}
\include{thesis-back}
\end{document}