blob: 21d4fd834da77dd076160503816d4045650f6b9b (
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
25
26
27
28
29
30
31
32
33
34
|
% Student template
% TODO: Image borders
%\begin{figure}[H]
%\includesvg[keepaspectratio=true, scale=0.2]{ring}
%\end{figure}
\clearpage
\def\studentinformation#1#2#3#4#5#6{
\begin{tikzpicture}[remember picture, overlay]
\node[inner sep=0pt] at (2, -4) {
\includegraphics[keepaspectratio=true, width=200pt]{parts/students/figures/#1.jpg}
};
\end{tikzpicture}
\begin{tikzpicture}[remember picture, overlay]
\node[inner sep=0pt] at (2, -4) {
\includegraphics[keepaspectratio=true, width=250pt]{ring.png}
};
\end{tikzpicture}
\sectionmark{Steckbrief - #2}
\begin{tikzpicture}[overlay]
\node[] at (11, -1) {
\Large{\begin{tabular}{ l l }
\textbf{Name:} & #2 \\
\textbf{Geburtstag:} & #3 \\
\textbf{Lieblingsfach:} & #4 \\
\textbf{Hobbies:} & #5 \\
\textbf{Lieblingsgenre:} & #6 \\
\end{tabular}}
};
\end{tikzpicture}
}
|