blob: fb55848e349aae307365b231548461fc517b4547 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
% 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) {
\Large{\begin{tabular}{ l l }
\textbf{Name:} & #1 \\
\textbf{Wohnort:} & #2 \\
\textbf{Geburtsdatum:} & #3
\end{tabular}}
};
\end{tikzpicture}
}
|