blob: a0cbf455fda1ef4527907ab206e2d83a17529b7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
% Student template
% TODO: Image borders
%\begin{figure}[H]
%\includesvg[keepaspectratio=true, scale=0.2]{ring}
%\end{figure}
\clearpage
\tikz[remember picture,overlay]
\node[inner sep=0pt] at (2, -5) {
\includegraphics[keepaspectratio=true, scale=1]{ring.png}
};
\def\studentinformation#1#2#3{
\begin{tikzpicture}[overlay]
\node[] at (11, -1) {\huge{Name: #1}};
\node[] at (11, -2) {\huge{Wohnort: #2}};
\node[] at (11, -3) {\huge{Geburtsdatum: #3}};
\end{tikzpicture}
}
|