forked from bwoosley/unophd_latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.tex
65 lines (38 loc) · 879 Bytes
/
example.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
\documentclass{unophd}
\title{SAMPLE DISSERTATION TITLE PAGE}
%\subtitle{Sub title test}
\author{Student's Name}
\degree{Doctor of Philosophy or Doctor of Education}
\major{XXXXXXXXXX}
\advisor{Advisor Name}
\date{Month, Year}
\addcommitteemember{Committee Member 1}
\addcommitteemember{Committee Member 2}
\addcommitteemember{Committee Member 3}
\abrv{XX}
\dateyear{20XX}
\abstract{Abstract text here}
\begin{document}
\maketitle
\makeabstract
\tableofcontents
\listoffigtab
\listofmyequations
\chapter{Introduction}
% !b just to make the floats appear on the bottom of the first page
\begin{figure}[!b]
\caption{First}
\end{figure}
\begin{table}[!b]
\caption{Little Table}
\end{table}
\begin{figure}[!b]
\caption{Second}
\end{figure}
\begin{equation}
1 + 1 = 2
\end{equation}
\label{eq:2.1}
\myequations{sum}
\chapter{Related Works}
\end{document}