-
Notifications
You must be signed in to change notification settings - Fork 1
/
chapter.tex
78 lines (67 loc) · 3.09 KB
/
chapter.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
% Sample Dissertation, Thesis, or Document %
% 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]{uathesis}
%\documentclass[dissertation,copyright]{uathesis}
%\documentclass[dissertation,CC-BY]{uathesis}
%\documentclass[dissertation,CC-BY-SA]{uathesis}
%\documentclass[dissertation,CC-BY-ND]{uathesis}
%\documentclass[thesis]{uathesis}
%\documentclass[document]{uathesis}
% Package Usage
% These are the packages that we need
\usepackage{algorithm}
\usepackage{algorithmic}
\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 typesetting)
%\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[dvips,bookmarks,colorlinks=true,urlcolor=black,linkcolor=black,citecolor=black]{hyperref}
% Set up some values.
\begin{document}
% Set up the title page
\include{mainmatter/introduction}
% Switch the spacing to single-spaced for the references
\renewcommand{\baselinestretch}{1} % chaning the value
\small\normalsize % switch size to make the value take
% Create the References list
\bibliographystyle{uabibnat}
\bibliography{bibliography}
\end{document}