blob: cc556a5ceeb54be834974e66f372789fd411951f (
plain)
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
|
%
% Title page
%
% Based on http://en.wikibooks.org/wiki/LaTeX/Title_Creation
%
\begin{titlepage}
\begin{center}
\includegraphics[width=0.6\textwidth]{images/uzh_ifi_logo_e_pos.pdf}\\
\vspace*{1.5ex}
\ \\
Artificial Intelligence Laboratory
\ \\
\ \\
\vspace*{1.5ex}
\HRule
\vspace*{10ex}
% textsc is small caps
\textsc{\Large
%
Master Project Report\\
\ \\}
%
% the title
%
{\huge \bfseries
Simulation of the Ontogenetic Development of Human Biped Walking
\\}
\vspace*{2ex}
\ \\
\ \\
\ \\
\HRule
\vspace*{2ex}
\ \\
\ \\
\ \\
% split the page into two columns
% left column
\begin{minipage}[t]{0.48\textwidth}
\begin{flushleft} \large
\emph{Author:}\\
Tobias Klauser\\
%Winterthur, Switzerland\\
Registration Number: 05-535-927
\end{flushleft}
\end{minipage}
%
% right column
\begin{minipage}[t]{0.48\textwidth}
\begin{flushright} \large
\emph{Supervised by:} \\
Prof. Dr. Rolf Pfeifer\\
Dr. Hugo Gravato Marques\\
% ensure vertical alignment with LHS
\footnotesize{\ }
\end{flushright}
\end{minipage}
\vspace*{15ex}
%
\vfill % fill vertical space
%
% Bottom of the page
% \today is the compilation date
{\large \today}
%
\end{center}
\end{titlepage}
|