forked from felixboes/joelix_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython_skript.tex
More file actions
135 lines (95 loc) · 2.98 KB
/
Copy pathpython_skript.tex
File metadata and controls
135 lines (95 loc) · 2.98 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
\documentclass[a4paper]{scrartcl}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{array}
\usepackage[german]{babel}
\usepackage{bm}
\usepackage[pdftex]{color}
\usepackage{enumitem}
\usepackage[utf8]{inputenc}
\usepackage{listings}
\usepackage{tikz}
\usepackage{tikz-cd}
\usepackage{mathrsfs}
\usepackage{mathtools}
\usepackage{url}
\usepackage{verbatim}
\usepackage{xspace}
\usepackage{hyperref}
\usepackage[all]{hypcap} % Convenience: Let hyperref jump to the figure instead to the caption only.
% Common theorem environments
\theoremstyle{plain}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{theoremdefinition}[theorem]{Theorem/Definition}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{propositiondefinition}[theorem]{Proposition/Definition}
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{Korollar}[theorem]{Korollar}
\newtheorem{fakt}[theorem]{Fakt}
\theoremstyle{definition}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{beispiel}[theorem]{Beispiel}
\theoremstyle{remark}
\newtheorem{bemerkung}[theorem]{Bemerkung}
\newtheorem{notation}[theorem]{Notation}
\newtheorem{motivation}[theorem]{Motivation}
% Include pictures made in inkscape:
\newcommand{\inputhack}{\input} % Rename \input, so that a very simple awk-skript can merge all tex-files.
\graphicspath{{pictures/}} % Set path of the pictures. This is used by the pdf_tex-files generated by inkscape.
\newcommand{\inkpic}[2][\columnwidth]{
\def\svgwidth{#1}
\inputhack{pictures/#2.pdf_tex}
}
% Git version
\input{gitversion}
% Authors and Title
\author{Clelia Albrecht, Felix Boes, Johannes Holke}
\title{Python Skript}
\date{\small Git Version: \gitversion}
% Personal Macros
\input{skript_macros_felix}
\input{skript_macros_code}
%
% Begin actual document.
%
\begin{document}
\maketitle
\thispagestyle{empty}
\newpage
\input{section_zitate/head.tex}
\newpage
\tableofcontents
\newpage
\input{section_intro/head.tex}
\newpage
\input{section_data_model/head.tex}
\newpage
\input{section_crashkurs/head.tex}
\newpage
\input{section_std_data_types/head.tex}
\newpage
\input{section_namespacing/head.tex}
\newpage
\input{section_funktionen/head.tex}
\newpage
\input{section_klassen/head.tex}
\newpage
\input{section_ausnahmen/head.tex}
\newpage
\input{section_module/head.tex}
\newpage
\input{section_python_mit_c/head.tex}
\newpage
\appendix
\input{section_installation/head.tex}
\newpage
% Bibliography
% We use our own bibstyle which is essential alpha extended by the fields 'eprint', 'archivePrefix' and 'primaryClass'.
%This is recommended by the arXiv (see https://arxiv.org/hypertex/bibstyles/)
\phantomsection % Braucht man damit hyperref das Literaturvezeichniss findet.
\addcontentsline{toc}{section}{Literatur} % Fuege Literaturvezeichniss zum Inhaltsverzeichnis hinzu.
\bibliographystyle{alphaplus}
\bibliography{bib_joelix}
\end{document}