forked from villekol/tau-latex-thesis-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtitlepage.tex
102 lines (58 loc) · 1.93 KB
/
titlepage.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
% Enable the use of @ character in command names.
\makeatletter
% The titles of the work. If there is no subtitle, leave the \myfisubtitle or
% \myensubtitle command arguments empty. Pass the title in the primary
% language as the first argument and its translation to the secondary language
% as the second.
\if@langenglish
\title{\myentitle}{\myfititle}
\else
\title{\myfititle}{\myentitle}
\fi
\if@langenglish
\subtitle{\myensubtitle}{\myfisubtitle}
\else
\subtitle{\myfisubtitle}{\myensubtitle}
\fi
% The author name.
\author{\myauthor}
% The examiner information. If your work has multiple examiners, replace with
%
% \examiner[<label>]{<name> \\ <name>}
%
% where <label> is an appropriate (plural) label, e.g. Examiners or
% Tarkastajat, and <name>s are replaced by the examiner names, each on their
% separate line.
\examiner{\myexaminers}
% The finishing date of the thesis (YYYY-MM-DD).
\finishdate{\myyear}{\mymonth}{\myday}
% The type of the thesis (e.g. Kandidaatintyö or Master of Science Thesis) in
% the primary and the secondary languages of the thesis.
\if@langenglish
\thesistype{\myenthesistype}{\myfithesistype}
\else
\thesistype{\myfithesistype}{\myenthesistype}
\fi
% The faculty and degree programme names in the primary and the secondary
% languages of the thesis, respectively.
\if@langenglish
\facultyname{\myenfacultyname}{\myfifacultyname}
\else
\facultyname{\myfifacultyname}{\myenfacultyname}
\fi
\if@langenglish
\programmename{\myenprogrammename}{\myfiprogrammename}
\else
\programmename{\myfiprogrammename}{\myenprogrammename}
\fi
% The keywords of the thesis in the primary and the secondary languages of the
% thesis.
\if@langenglish
\keywords{\myenkeywords}{\myfikeywords}
\else
\keywords{\myfikeywords}{\myenkeywords}
\fi
% Make @ a regular letter again.
\makeatother
% Actually generate the title page based on the above commands.
\maketitle