klopapier/klopapier.tex
2019-06-28 13:02:09 +02:00

128 lines
3.8 KiB
TeX
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

% This document must be compiled with XeLaTeX!
% Show warning and useful tips during compilation
% Attention: Must be included even BEFORE \documentclass!
% Source: http://www.howtotex.com/packages/9-essential-latex-packages-everyone-should-use/
\RequirePackage[l2tabu,orthodox]{nag}
\documentclass[12pt]{scrartcl}
% Needed for fonts
% Replaces fontenc and inputenc for XeLaTeX and LuaTex
\usepackage{fontspec}
% Enables translations for packages
% Replaces babel for XeLaTeX and LuaTeX (requires fontspec)
\usepackage{polyglossia}
% Attention: Call this as soon as possible to translate packages!
\setmainlanguage[spelling=new,babelshorthands=true]{german}
% Set fonts
%\setmainfont[Path=./fonts/,UprightFont=*-Regular,BoldFont=*-Bold]{SourceSerifPro}
\usepackage[left=1.5cm,right=1.5cm,top=1cm,bottom=1cm]{geometry}
% For embedding graphics
\usepackage{graphicx}
% Default search path for images
\graphicspath{{images/}}
% Typesetting improvments
\usepackage{microtype}
% Very good package for tables (e.g. enables automatic line breaks)
\usepackage{tabularx}
% For better control of one/two columns
\usepackage{multicol}
% Spacing between columns
\setlength\columnsep{30pt}
% Don't align the bottom baselines of all columns
\raggedcolumns
% Needed for floats (e.g. figures) in combination with multicol package
\usepackage{float}
% Clickable URLs
\usepackage[hidelinks]{hyperref}
% Programmatic graphics
\usepackage{tikz}
% Do not insert pagebreak after title page
\let\endtitlepage\relax
\begin{document}
\thispagestyle{empty}
\begin{titlepage}
\begin{center}
\huge{\bfseries{Klopapier 0x00}}
\vspace{1cm}
\end{center}
\end{titlepage}
\begin{multicols}{2}
\section*{Termine}
\begin{tabularx}{\linewidth}{@{}>{\bfseries}l >{\bfseries}l X@{}}
02.07. & & Wetteinlösung Hochschulwahlen \\
10.07. & & Linux-Installationsparty Teil 2 \\
11.07. & 17:00 & WIAI.community Praxisreport im Hofcafé: CubeServ GmbH zu Machine Learning in der Praxis am Beispiel von Predictive Maintenance \\
16.07. & & WIAI Sommerfest \\
\end{tabularx}
\section*{Hochschulwahlen}
Am 25. Juni haben die Hochschulwahlen stattgefunden. Ergebnis an der Fakultät; Ergebnis an anderen Fakultäten im Vergleich; Vergleich zu vergangenen Wahlen; gewählte Kandidaten; Wahlversprechen
\section*{Erhöhungen der Semesterbeiträge}
Der Anteil der Semesterbeiträge für das Studentenwerk Würzburg wird in den nächsten drei Semestern um je 10 € erhöht, also in den nächsten 1,5 Jahren um 30 € angehoben.
Gründe dafür ist die (Zwangs)Renovierung des Pestalozzi-Wohnheims und längerfristige Schließungen der Wohnheime in der Judenstraße und Haus Balthasar, die einen Neubau eines Wohnheims jenseits der Schienen bedingen. Zudem fallen auch an anderen Standorten des Studentwerk Würzburges weitere Kosten an.
\section*{KIF}
Was ist die KIF? Verabschiedete Resolutionen
\section*{Rätsel}
Woher stammt dieses Symbol und welche alternative Bedeutung hat es?
\vspace{0.5cm}
\begin{center}
% Glider, a hacker emblem (http://www.catb.org/hacker-emblem/)
% Author: Alex Hirzel
% License: Public Domain
\begin{tikzpicture}[scale=0.5,thick]
\draw (0,0) grid (3,3);
\foreach \c in {(0,0), (1,0), (2,0), (2,1), (1,2)}
\fill \c + (0.5,0.5) circle (0.42);
\end{tikzpicture}
\end{center}
\section*{xkcd}
\begin{figure}[H]
\centering
\includegraphics[width=0.7\linewidth]{xkcd-1807}
\end{figure}
\section*{Impressum}
\footnotesize{%
\begin{tabularx}{\linewidth}{@{}>{\bfseries}l X@{}}
\multicolumn{2}{@{}l}{\bfseries{Fachschaft WIAI}} \\
WWW: & \url{https://wiai.de} \\
E-Mail: & \href{mailto://fachschaft-wiai.stuve@uni-bamberg.de}{fachschaft-wiai.stuve@uni-bamberg.de}\\
Telefon: & \href{tel:+49951863-1219}{+49 951 863-1219}\\
Raum: & WE5/02.104
\end{tabularx}
}
\end{multicols}
\end{document}