]> git.siccegge.de Git - teilnehmertool.git/commitdiff
teilnehmertool: += strichlistentemplate;
authorJohannes Schilling <of82ecuq@cip.cs.fau.de>
Tue, 29 Oct 2013 16:03:16 +0000 (17:03 +0100)
committerJohannes Schilling <of82ecuq@cip.cs.fau.de>
Tue, 29 Oct 2013 16:03:16 +0000 (17:03 +0100)
templates/strichliste.tex [new file with mode: 0644]

diff --git a/templates/strichliste.tex b/templates/strichliste.tex
new file mode 100644 (file)
index 0000000..1d1d7b7
--- /dev/null
@@ -0,0 +1,64 @@
+\documentclass[a4paper,landscape]{scrartcl}
+
+\usepackage[top=2cm,left=1cm,right=1cm,bottom=1cm]{geometry}
+
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage[ngerman]{babel}
+
+\usepackage{color}
+
+\usepackage{amsmath,amsthm,amssymb}
+\usepackage{mathtools}
+
+\usepackage{array}
+
+\usepackage{ytableau}
+
+\usepackage{enumerate}
+
+\usepackage{fancyhdr}
+\pagestyle{fancy}
+
+\usepackage{booktabs}
+\usepackage{multirow}
+
+\fancyhf{}
+\lhead{Konferenz der Informatikfachschaften}
+\chead{KIF 41,5 -- Erlangen}
+\rhead{Strichliste Kasse des Vertrauens}
+\cfoot{}
+
+\usepackage{longtable}
+
+%% use option "gen" to make the symbol match the current font
+%% use option "official" to make the symbol look most accurately like the official one
+\usepackage[gen]{eurosym}
+
+\setlength{\headheight}{28pt}
+\addtolength{\textheight}{-28pt}
+
+\setlength{\parskip}{7pt}
+\setlength{\parindent}{0pt}
+
+%% this took me an hour or so. hope it's worth it
+\DeclareUnicodeCharacter{1ED1}{\resizebox{.80em}{!}{\resizebox{.4em}{!}{\^{o}}\hspace{-1mm}\'{}}\hspace{-1mm}{}}
+%% easier unicode characters
+\DeclareUnicodeCharacter{03B2}{$\beta$}
+
+\begin{document}
+
+\begin{center}
+       \begin{longtable}{|m{.2\textwidth}|m{.15\textwidth}|m{.13\textwidth}|m{.13\textwidth}|m{.13\textwidth}|m{.13\textwidth}|}
+               \textbf{Uni} & \textbf{Nick} & \textbf{1\,\euro{}} & \textbf{60\,ct} & \textbf{30\,ct} & \textbf{20\,ct} \\
+       \hline
+       \hline
+       \endhead
+{% for t in teilnehmer %}
+       \large {{ t['hochschule'] | escape_tex }} & \large {{ t['nick'] | escape_tex }} & & & \vspace{2em} & \\
+       \hline
+{% endfor %}
+       \end{longtable}
+\end{center}
+
+\end{document}