This repository was archived by the owner on Nov 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_exercises.tex
More file actions
53 lines (48 loc) · 1.5 KB
/
main_exercises.tex
File metadata and controls
53 lines (48 loc) · 1.5 KB
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
52
53
\documentclass{article}
\usepackage[english]{babel} % required to compile for windows
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{listings}
\usepackage{xcolor}
\lstset{ %
frame=single, % adds a frame around the code
numbers=none, % where to put the line-numbers; possible values are (none, left, right)
numbersep=5pt, % how far the line-numbers are from the code
numberstyle=\tiny\color{gray}, % the style that is used for the line-numbers
showstringspaces=false
}
\usepackage{enumitem}
\setlist[itemize]{leftmargin=*}
\usepackage{graphicx}
\usepackage{fancyhdr} % header
\geometry{a4paper, left=2cm, right=2cm, top=3cm, bottom=4cm}
% header
\pagestyle{fancy}
\fancyhead{} % clear header
\fancyfoot{} % clear footer
\setlength{\headheight}{50pt}
\chead{{\large Schnupperuni Informatik}}
\lhead{FOSS-AG}
\rhead{15. - 19.10.2018}
\cfoot{-\thepage-}
\begin{document}
\begin{center}
\huge Von Schlangen und Himbeerkuchen:\\Programmieren in der Welt von Minecraft
\end{center}
\section{Einführung}
\input{src/introduction/introduction_task.tex}
\section{Shuffle Block}
\subsection{}
\input{src/shuffle_block/shuffle_block.tex}
\subsection{}
\input{src/shuffle_block/shuffle_block_advanced.tex}
\section{Lava Runner}
\input{src/lava_runner/lava_runner_task.tex}
\newpage
\section{Astroid}
\input{src/astroids/astroid_task.tex}
\newpage
\section{Snake}
\input{src/snake/snake_task.tex}
\end{document}