LaTeX-Base/TeX/Classes/HSRTReport/Pages/Titlepage.tex

40 lines
1.1 KiB
TeX

% !TEX root = ../../../../Main.tex
\newcommand{\createdon}[1]{\gdef\@createdon{#1}}
\renewcommand{\maketitle}{
\setlength{\imageHeight}{2cm*\real{\mainLogoScale}*\real{\logosScale}}
\begin{titlepage}
\begin{tikzpicture}[overlay, remember picture]
\node[anchor=north west, inner sep=0pt, xshift=1.8cm, yshift=-1.5cm] (logo0) at (current page.north west) {
\includesvg[height=\imageHeight]{\imagesPath/DUMMY.svg}
};
\SetupTitlePageLogos
\end{tikzpicture}
\vskip 10em
% title
\begin{flushleft}
{
\color{gray}\textbf{
\blenderfont\Huge
\@title
}
}
\color{lightgray}
\rule{\textwidth}{0.5mm}
\end{flushleft}
\vskip 7em
\vfill
% table
\noindent
\setstretch{1.0}
\begin{tabular}{@{} p{40mm} l}
\textbf{Datum} & \@createdon\\
\end{tabular}
\end{titlepage}
}