-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcltlmatitle.sty
66 lines (54 loc) · 1.61 KB
/
cltlmatitle.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
% Title page package for CLTL master theses
% Author: Sophie Arnoult
% Based on columbidaeTitle.sty: https://en.wikibooks.org/wiki/LaTeX/Title_Creation
% ----------------------------------------------------------------
\ProvidesPackage{cltlmatitle}[2020/03/04 v0.1]
\RequirePackage{graphicx}
\newcommand*{\track}[1]{\gdef\@track{#1}%
}
\newcommand*{\@track}{Text Mining}
\newcommand*{\degree}[1]{\gdef\@degree{#1}%
}
\newcommand*{\@degree}{Master}
\newcommand*{\reader}[1]{\gdef\@reader{#1}%
}
\newcommand*{\@reader}{Summer Reads}
\newcommand*{\supervisors}[1]{\gdef\@supervisors{#1}%
}
\newcommand*{\@supervisors}{Joan Smith}
\newcommand*{\showtitle}{{\em \@title}}
\renewcommand*{\maketitle}{%
\pagestyle{empty}
\begin{titlepage}
\centering
{\Large\@degree\ Thesis\\}
\vspace{2cm}
{\Huge\@title\\}
\vspace{1.2cm}
{\huge\@author\\}
\vspace{2cm}
\parbox{0.7\textwidth}{\centering\large\em a thesis submitted in partial fulfilment of the requirements for the degree of}\\
\vspace{0.4cm}
{\Large \bf MA Linguistics}\\
\vspace{0.1cm}
{\large (\@track)}
\vspace{2cm}
{\Large {\bf Vrije Universiteit Amsterdam}} \\
\vspace{0.4cm}
{\Large Computational Lexicology and Terminology Lab}\\
\vspace{0.1cm}
{\Large Department of Language and Communication}\\
\vspace{0.1cm}
{\Large Faculty of Humanities}
\vspace{2.0cm}
\includegraphics[width=0.5\textwidth]{VU_logo_RGB-01.jpg}
\vfill
\begin{tabular}{rl}
Supervised by: & \@supervisors\\
2$^{nd}$ reader: & \@reader\\
&\\
Submitted: & \@date
\end{tabular}
\end{titlepage}
}
\endinput