forked from robjhyndman/MonashThesis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
uqtitle.sty
75 lines (61 loc) · 1.8 KB
/
uqtitle.sty
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
%*************************************
% UQ Thesis Title Page Formatting Package
%*************************************
\ProvidesPackage{uqtitle}[2018/03/19 v.01 UQ thesis title template]
\RequirePackage{graphicx}
%This package formats the front matter for theses at
%The University of Queensland.
%Based on https://en.wikibooks.org/wiki/LaTeX/Title_Creation
%*************************************
% Define new 'storing' commands and set defaults.
%*************************************
%Current degree.
\newcommand*{\currentdegrees}[1]{\gdef\@currentdegrees{#1}}
\newcommand*{\@currentdegrees}{Specify your current degrees}
%Degree you are submitting for.
\newcommand*{\submittedfor}[1]{\gdef\@submittedfor{#1}}
\newcommand*{\@submittedfor}{Specify degree you are submitting for}
%School you are submitting under.
\newcommand*{\school}[1]{\gdef\@school{#1}}
\newcommand*{\@school}{School of Hard Knocks}
%Your ORCID
\newcommand*{\orcid}[1]{\gdef\@orcid{#1}}
\newcommand*{\@orcid}{Your orcid}
%Renew the maketitle command.
\renewcommand*{\maketitle}{%
%*************************************
% Title Page layout
%*************************************
%Suppress the header.
\pagestyle{empty}
%Make sure we have Roman font family.
\rmfamily
%Include the university shield.
\noindent
\vfill
\begin{center}
\includegraphics[width=.35\textwidth]{UQlogo-Stacked-Mono-cmyk}
\end{center}
\vspace{48 pt}
\begin{center}
\Huge\bfseries
\thetitle
\end{center}
\begin{center}
\Large
\theauthor \\
\@currentdegrees{}
\end{center}
\begin{center}
\includegraphics[width=.05\textwidth]{OrcidLogo.jpg} \\
\@orcid{}
\end{center}
\vspace{196 pt}
\begin{center}
\Large
\textit{A thesis submitted for the degree of \@submittedfor{} of Philosophy at\\
The University of Queensland in \thedate{}}\\
\Large
\@school{}
\end{center}
}