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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
% 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{
% Bild in Ring
\begin{tikzpicture}[remember picture, overlay]
\node[inner sep=0pt] at (2, -4) {
\includegraphics[keepaspectratio=true, width=200pt]{parts/students/figures/#1.jpg}
};
\end{tikzpicture}
% Ring
\begin{tikzpicture}[remember picture, overlay]
\node[inner sep=0pt] at (2, -4) {
\includegraphics[keepaspectratio=true, width=250pt]{ring.png}
};
\end{tikzpicture}
% Steckbrief Tabelle
\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}
% Bild in Rahmen
\begin{tikzpicture}[remember picture, overlay]
\node[inner sep=0pt] at (14, -17.5) {
\includegraphics[keepaspectratio=true, width=160pt]{parts/students/figures/#1_child.jpg}
};
\end{tikzpicture}
% Rahmen
\begin{tikzpicture}[remember picture, overlay]
\node[inner sep=0pt] at (14, -17) {
\includegraphics[keepaspectratio=true, width=180pt]{rahmen.png}
};
\end{tikzpicture}
}
|