Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
latextemplates
GitHub Repository: latextemplates/scientific-thesis-template
Path: blob/main/paderborn-title.tex
340 views
1
\thispagestyle{empty}
2
3
%margin of the title text box
4
\newgeometry{left=1.5cm,right=1.5cm,top=12.6cm,bottom=1.5cm}
5
6
\definecolor{pbblue}{RGB}{35,53,107} %\definecolor{pbblue}{spotcolor}{PATNONE281PC,1.0}
7
\definecolor{pbgray}{RGB}{213,212,208} %\definecolor{pbgray}{spotcolor}{PATNONE420PC,1.0}
8
9
\begin{tikzpicture}[remember picture, overlay]
10
% for hints on absolute positioning see https://tex.stackexchange.com/a/6821/9075
11
12
% blue box
13
\node[yshift=5mm] at (current page.south west)
14
{\begin{tikzpicture}[remember picture, overlay]
15
\fill[fill=pbblue] (5mm,0) rectangle (\paperwidth-5mm,10.2cm);
16
\end{tikzpicture}
17
};
18
19
% gray box - inner part
20
\node[yshift=10.6cm] at (current page.south west)
21
{\begin{tikzpicture}[remember picture, overlay]
22
\draw[color=pbgray!80!black,fill=pbgray!80!black] (5mm,0) rectangle (\paperwidth-5mm,6cm);
23
\end{tikzpicture}
24
};
25
% gray box - outer part
26
\node[yshift=10.6cm] at (current page.south west)
27
{\begin{tikzpicture}[remember picture, overlay]
28
\draw[color=pbgray,fill=pbgray] (0,0) rectangle (5mm,6cm);
29
\draw[color=pbgray,fill=pbgray] (\paperwidth-5mm,0) rectangle (\paperwidth,6cm);
30
\end{tikzpicture}
31
};
32
33
% strange white box - top
34
\node[yshift=-3.5cm] at (current page.north west)
35
{\begin{tikzpicture}[remember picture, overlay]
36
\fill[fill=white] (13cm,0) rectangle (19.5cm,.5cm);
37
\end{tikzpicture}
38
};
39
% strange white box - bottom
40
\node[yshift=0cm] at (current page.south west)
41
{\begin{tikzpicture}[remember picture, overlay]
42
\fill[fill=white] (13cm,0) rectangle (19.5cm,.9cm);
43
\end{tikzpicture}
44
};
45
\end{tikzpicture}
46
47
% University logo
48
\AddToShipoutPictureBG*{%
49
\AtPageUpperLeft{%
50
\put(\LenToUnit{13cm},\LenToUnit{-2.5cm}){%
51
\includegraphics[scale=.337]{logos/UPB_LOGO_GB_RGB_15.pdf}
52
}%
53
}
54
}
55
56
% Background picture
57
\AddToShipoutPictureBG*{%
58
\AtPageUpperLeft{%
59
\put(\LenToUnit{.5cm},\LenToUnit{-13.1cm}){%
60
%20x10cm
61
\includegraphics{logos/UBP-background-picture.pdf}
62
}%
63
}
64
}
65
66
\makeatletter
67
\noindent
68
{\vspace{-.1cm}\LARGE\textsf{\textcolor{white}{\MakeUppercase{\@labelType}}}\par}\bigskip
69
70
\noindent
71
{\Huge\textsf{\textbf{\textcolor{pbblue}{\MakeUppercase{\MCS@title}}}}\par}\smallskip
72
73
\noindent
74
{\LARGE\textsf{\textcolor{white}{\MakeUppercase{\MCS@author}}}}
75
\makeatother
76
77
\restoregeometry
78
\clearpage
79
80