2018-09-07 15:44:41 +02:00
|
|
|
\documentclass[10pt]{scrreprt}
|
2019-08-12 12:10:36 +02:00
|
|
|
|
|
|
|
% quick TOC setup
|
|
|
|
\KOMAoption{toc}{chapterentrydotfill}
|
|
|
|
% don't use parskip package, set parskip=full instead
|
|
|
|
\KOMAoption{parskip}{half}
|
|
|
|
|
2018-09-07 15:44:41 +02:00
|
|
|
\usepackage[twoside
|
|
|
|
,papersize={148mm, 210mm}
|
|
|
|
,layoutsize={148mm, 210mm}
|
|
|
|
,top=1.5cm
|
|
|
|
,bottom=2cm
|
|
|
|
,footskip=1cm
|
|
|
|
,textwidth=12cm
|
|
|
|
,verbose
|
|
|
|
]{geometry}
|
|
|
|
|
|
|
|
\input{preamble.tex}
|
|
|
|
|
2021-09-18 00:02:46 +02:00
|
|
|
\input{macros.tex}
|
|
|
|
|
2021-09-19 02:20:14 +02:00
|
|
|
\hypersetup{
|
|
|
|
pdfauthor={FSR Informatik der TU Dresden},
|
|
|
|
pdftitle={The Manual - ESE \eseyear},
|
|
|
|
breaklinks=true, colorlinks=false, pdfborder={0 0 0},
|
|
|
|
pdfencoding=unicode
|
|
|
|
}
|
|
|
|
|
2018-09-07 15:44:41 +02:00
|
|
|
% we need this dummy counter to make a label at the spieleabendplakat
|
|
|
|
\newcounter{dummy}
|
|
|
|
|
|
|
|
\sloppy % forces "ugly" line breaks
|
|
|
|
|
|
|
|
\pagestyle{plain}
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
%Das Coverbild, oh gott o.O Aber es funktioniert
|
|
|
|
\newcommand\CoverPic{%
|
|
|
|
\put(0,0){%
|
|
|
|
\parbox[b][\paperheight]{\paperwidth}{%
|
|
|
|
\vfill
|
|
|
|
\centering
|
|
|
|
\includegraphics[width = \paperwidth, height = \paperheight]{cover/Vorne}%
|
|
|
|
\vfill
|
|
|
|
}}}
|
|
|
|
\thispagestyle{empty} %keine Seitenzahl
|
2021-09-24 00:35:32 +02:00
|
|
|
\pagecolor{ese_bg_color}
|
2018-09-07 15:44:41 +02:00
|
|
|
\AddToShipoutPictureBG*{\CoverPic}
|
|
|
|
\mbox{} %brauche leeren Content für ne newpage
|
2021-09-24 00:35:32 +02:00
|
|
|
\newpage
|
|
|
|
\pagecolor{white}
|
2018-09-07 15:44:41 +02:00
|
|
|
|
|
|
|
% Linklist output
|
|
|
|
% All this stuff needs is immediate to avoid confusion between links on the same page
|
|
|
|
\immediate\newwrite\linklistfile
|
|
|
|
\immediate\openout\linklistfile=kopimi.htaccess\relax
|
|
|
|
\immediate\write\linklistfile{RewriteEngine On}
|
2021-09-19 02:20:14 +02:00
|
|
|
\immediate\write\linklistfile{RewriteBase /\eseyear}
|
2018-09-07 15:44:41 +02:00
|
|
|
|
2022-09-22 22:39:36 +02:00
|
|
|
% \include{texte/zeitplan}
|
2018-09-07 15:44:41 +02:00
|
|
|
\include{texte/inhaltsverzeichnis}
|
|
|
|
\include{texte/vorwort}
|
|
|
|
\include{texte/grusswort}
|
2019-08-12 13:17:14 +02:00
|
|
|
\include{texte/faq}
|
2018-09-07 15:44:41 +02:00
|
|
|
\include{texte/checkliste}
|
|
|
|
\include{texte/f1help}
|
|
|
|
\include{texte/fakultaet}
|
2019-07-15 15:42:55 +02:00
|
|
|
\include{texte/campus}
|
2018-09-07 15:44:41 +02:00
|
|
|
\include{texte/veranstaltungen}
|
2019-09-13 12:15:45 +02:00
|
|
|
\include{texte/studienalltag}
|
2018-09-07 15:44:41 +02:00
|
|
|
\include{texte/moduluebersicht}
|
2023-09-20 13:45:54 +02:00
|
|
|
\include{texte/scrumwitch}
|
|
|
|
\include{texte/raetsel}
|
2022-09-21 15:17:24 +02:00
|
|
|
\include{texte/werbung}
|
2018-09-07 15:44:41 +02:00
|
|
|
\include{texte/links}
|
2019-09-03 15:51:20 +02:00
|
|
|
% \addchap{Notizen}\mbox{}
|
2018-09-07 15:44:41 +02:00
|
|
|
\include{texte/campusplan}
|
|
|
|
\include{cover/back}
|
|
|
|
|
|
|
|
% Always close your files :)
|
|
|
|
\immediate\closeout\linklistfile
|
|
|
|
|
|
|
|
\end{document}
|