forked from trananh/uathesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proposal.tex
120 lines (101 loc) · 4.31 KB
/
proposal.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
% Sample Dissertation, Thesis, or Document Proposal %
% for use with the %
% University of Arizona Thesis Class, %
% uathesis.cls %
%---------------------------------------------------%
% We'll use the uathesis document class (duh). The uncommented line
% below will produce a Dissertation, the others would produce a Thesis
% or a Document. There are other options available to you like turning
% on the copyright statement and replacing the year on the title page
% with a "generated on" stamp (handy for early drafts). To find out
% what the available options are, take a look into the uathesis.cls
% file and look for the \DeclareOption commands near the top of that
% file.
% There are five copyright options. Copyright, no copyright, and three
% different Creative Commons licences. Use the one you want (If you go
% Creative Commons, I (DM) think the CC-BY-ND makes the most sense) See
% uathesis.cls for the reason why the non-commercial licenses are not
% included.
\documentclass[dissertation-proposal]{uathesis}
%\documentclass[dissertation-proposal,copyright]{uathesis}
%\documentclass[dissertation-proposal,CC-BY]{uathesis}
%\documentclass[dissertation-proposal,CC-BY-SA]{uathesis}
%\documentclass[dissertation-proposal,CC-BY-ND]{uathesis}
%\documentclass[dissertation-proposal,generatedon]{uathesis}
%\documentclass[thesis-proposal]{uathesis}
%\documentclass[proposal]{uathesis}
% Package Usage
% These are the packages that we need
%\usepackage{algorithm}
%\usepackage{algorithmic}
\usepackage[ruled,boxed,noend]{algorithm2e}
\usepackage{graphicx}
\usepackage{natbib} % natbib is available on most systems, and is
% terribly handy.
% If you want to use a different Bibliography package,
% you should be able to, just change this
% and the \bibliographystyle command below. Be warned
% that you may need to do a little hacking to get
% the REFERENCES item to show up in your TOC.
% Compatibility with the AASTEX package
% of the American Astronomical Society.
%\usepackage{deluxetable} % Allows use of AASTEX deluxe tables
%\usepackage{aastex_hack} % Allows other AASTEX functionality.
% These are other packages that you might find useful.
% For controlling the fonts, see
% http://www.math.uiuc.edu/~hartke/computer/latex/survey/survey.html
% The following is a nice font set:
%\usepackage{mathtime} % Times for letters; Belleek math.
%
%\usepackage{amsmath} % AMS Math (advanced math typesetti`ng)
%\usepackage{lscape} % Used for making fitting large tables in by putting them landscape
%\usepackage{refs}
%
% If you are using hyper-ref (recommended), this command must go after all
% other package inclusions (from the hyperref package documentation).
% The purpose of hyperref is to make the PDF created extensively
% cross-referenced.
\usepackage[bookmarks,colorlinks=true,urlcolor=black,linkcolor=black,citecolor=black]{hyperref}
% Set up some values.
\completetitle{My Lovely Proposal}
\fullname{Bob Bob Loblaw} % Grad college wants your full name here.
\degreename{Doctor of Philosophy} % Title of your degree.
\begin{document}
% Set up the title page
\maketitlepage
{DEPARTMENT OF COMPUTER SCIENCE} % Title of your department.
{2013}
% Insert the approval form.
\approval
{1 January 1922} % Proposal Date
{Arnold Abrams} % Dissertation Director
{Billy Boy} % 1st committee member
{Carl Crow} % 2nd committee member
{Donna Dood} % 3rd committee member
{Edgar Elm} % 4th committee member
%{} % 5th committee member
% Proposals don't typically have SBA, Acknolwedgements, or Dedication,
% but you can include them here if you wish.
%\statementbyauthor
%\incacknowledgements{acknowledgements}
%\incdedication{dedication}
% Create a ``Table of Contents''
\tableofcontents
% Create a ``List of Figures''
\listoffigures
% Create a ``List of Tables''
\listoftables
% Include the ``Abstract''
\incabstract{abstract}
% Include the various chapters
\include{mainmatter/introduction}
% Include the various appendices
\appendix
\include{appendix_A}
% Switch the spacing to single-spaced for the references
\renewcommand{\baselinestretch}{1} % changing the value
\small\normalsize % switch size to make the value take
% Create the References list
\bibliographystyle{uabibnat}
\bibliography{bibliography}
\end{document}