-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathuctest.tex
143 lines (111 loc) · 3.57 KB
/
uctest.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
%% uctest.tex
%% See accompanying LICENSE file for licensing, history, and copyright
%% information.
% This line is required for LPPL compliance.
\message{You are using a modified uctest.tex}
% Note that if you turn this file into a Derived Work that is not intended as a
% replacement for the original template (i.e. an actual thesis), and you do not
% imply that anyone provides support for your modified version, you may
% distribute it under any license you wish.
\documentclass[11pt]{ucscthesis}
\def\dsp{\def\baselinestretch{2.0}\large\normalsize}
\dsp
% 2010june01 sol katzman:
% package geometry should override the various margin settings from .clo and .cls
% and also eliminates issues where the default papersize is A4
\usepackage[letterpaper, left=1.5in, right=1.25in, top=1.25in, bottom=1.25in, includefoot]{geometry}
% Use PostScript fonts as required by UCSC Dissertation Preparation Guidelines
\usepackage{pslatex}
\begin{document}
% Declarations for Front Matter
\title{The Elements of Theses}
\author{Perry H. Disdainful}
\degreeyear{1994}
\degreemonth{March}
\degree{DOCTOR OF PHILOSOPHY}
\chair{Professor Ignatius Arrogant}
\committeememberone{Professor Ivory Insular}
\committeemembertwo{Professor General Reference}
\committeememberthree{Professor Ipsum Lorem}
\numberofmembers{4} %% (including chair) possible: 3, 4, 5, 6
\deanlineone{Dean John Doe}
\deanlinetwo{Vice Provost and Dean of Graduate Studies}
\deanlinethree{}
\field{Indigineous Peoples Basketry}
\campus{Santa Cruz}
\begin{frontmatter}
\maketitle
\copyrightpage
\tableofcontents
\listoffigures
\listoftables
\begin{abstract}
Theses have elements. Isn't that nice?
\end{abstract}
\begin{dedication}
\null\vfil
{\large
\begin{center}
To myself,\\\vspace{12pt}
Perry H. Disdainful,\\\vspace{12pt}
the only person worthy of my company.
\end{center}}
\vfil\null
\end{dedication}
\begin{acknowledgements}
I want to ``thank'' my committee, without whose ridiculous demands, I
would have graduated so, so, very much faster.
\end{acknowledgements}
\end{frontmatter}
\part{First Part}
\chapter{Introduction}
Every dissertation should have an introduction. You might not realize
it, but the introduction should introduce the concepts, background,
and goals of the dissertation.
\begin{table}
\begin{tabular}{|l|r|}
\hline
Title & Author \\
\hline
War And Peace & Leo Tolstoy \\
The Great Gatsby & F. Scott Fitzgerald \\ \hline
\end{tabular}
\caption{A normalsize table. There has been a complaint that table
captions are not single-spaced. This is odd because the code
indicates that they should be.}
\end{table}
\begin{table}
\caption{A small table.}
\begin{scriptsizetabular}{|l|r|}
\hline
Title & Author \\
\hline
War And Peace & Leo Tolstoy \\
The Great Gatsby & F. Scott Fitzgerald \\ \hline
\end{scriptsizetabular}
\end{table}
\chapter{Previous Work}
Some other research was once performed.
\begin{figure}
\caption{A first figure.}
\end{figure}
\begin{figure}
\caption{A second figure.}
\end{figure}
\chapter{Conclusion}
\appendix
\chapter{Some Ancillary Stuff}
Ancillary material should be put in appendices, which appear BEFORE the
bibliography.
% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% bibliography
% 2010june01 sol katzman:
% if \nocite is specified, all entries in the bib file are included,
% probably not what you want, so comment out the \nocite and only get the cited references.
%\nocite{*}
% 2010june01 sol katzman:
% this makes the bibliography single spaced, with double spacing between entries
\def\baselinestretch{1.0}\large\normalsize
\bibliographystyle{plain}
\bibliography{uctest}
\end{document}