Add boilerplate for first issue

This commit is contained in:
Martin Müller 2019-06-28 12:49:06 +02:00
parent 7ccb9c1dfb
commit 26077d942c
3 changed files with 150 additions and 0 deletions

25
Makefile Normal file
View File

@ -0,0 +1,25 @@
DOCNAME=klopapier
# You want latexmk to *always* run, because make does not have all the info.
# Also, include non-file targets in .PHONY so they are run regardless of any
# file of the given name existing.
.PHONY: $(DOCNAME).pdf all clean
# The first rule in a Makefile is the one executed by default ("make"). It
# should always be the "all" rule, so that "make" and "make all" are identical.
all: $(DOCNAME).pdf
# MAIN LATEXMK RULE
# -pdf tells latexmk to generate PDF directly (instead of DVI).
# -pdflatex="" tells latexmk to call a specific backend with specific options.
# -use-make tells latexmk to call make for generating missing files.
# -interaction=nonstopmode keeps the pdflatex backend from stopping at a
# missing file reference and interactively asking you for an alternative.
$(DOCNAME).pdf: $(DOCNAME).tex
latexmk -xelatex -use-make $(DOCNAME).tex
clean:
latexmk -CA

125
klopapier.tex Normal file
View File

@ -0,0 +1,125 @@
% 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}
% 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}

BIN
xkcd-1807.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB