-
Notifications
You must be signed in to change notification settings - Fork 1
/
Mathe_Grundlagen.tex
125 lines (103 loc) · 3.79 KB
/
Mathe_Grundlagen.tex
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
\documentclass[10pt, a4paper]{article}
\title{\fontsize{60}{20} \textbf{Mathe Grundlagen}}
\newcommand{\versioninfo}{v1.0}
\author{P. Häusermann, J. Hösli, N. Selvarajah, S. Walker}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Kopf und Fusszeile und Weiter Designeinstellungen
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[left=20mm,right=20mm,top=20mm,bottom=15mm,includeheadfoot]{geometry}
\usepackage{fancyhdr} %Fancyhdr ist ein eingeführtes, eigenständiges Paket zur einfacheren Manipulation von Kopf- und Fußzeile. Es definiert Befehle für den Seitenstil fancy
\usepackage{lastpage} %Reference the number of pages in your LaTeX document through the introduction of a new label which can be referenced like \pageref{LastPage} to give a reference to the last page of a document. It is particularly useful in the page footer that says: Page N of M.
\renewcommand{\headrulewidth}{0.25pt}
\renewcommand{\footrulewidth}{0.25pt}
\fancyhf{}
\fancyhead[L]{Mathe Grundlagen \tiny{\textit{\versioninfo}}}
\fancyhead[R]{\leftmark}
\fancyfoot[L]{\today}
\fancyfoot[R]{Seite \thepage { }von \pageref{LastPage}}
\setlength{\parindent}{0pt} %Einrücken von Absätzen verhindern
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Verwendete Packete
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{amssymb} %Mathematische Bibliotheken
\usepackage{amsmath}
\usepackage{trfsigns} %Zeichen für Laplacetranformation etc.
\usepackage{mathtools}
\usepackage{bm}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\usepackage{framed}
\usepackage{pgfplots}
\pgfplotsset{compat=1.5.1}
\usepgfplotslibrary{fillbetween}
\usepackage{tabularx}
\usepackage{xcolor}
\usepackage{colortbl} %Für \rowcolor
\usepackage{caption}
\usepackage{rotating}
\usepackage{array} % für m-Spalten
\usepackage{multicol} % für \multicols
\usepackage{paralist} % für \compactitem und \compactenum
\usepackage{hyperref} % Erstellt Verweise innerhalb und nach außerhalb eines PDF
\usepackage[ngerman]{babel} %Deutsches Sprachpaket
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Eigene Befehle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Verweis auf Bronstein
\newcommand{\bronstein}[1]{\scriptsize{\textcolor{red}{\mbox{Bronstein s.#1}}}}
%Verweis innerhalb des Dokuments
\newcommand{\verweis}[2]{\small{(siehe auch \ref{#1}, #2 (S. \pageref{#1}))}} %Verwendung: \verweis{label}{Bezeichnung}
%Eingekreiste Zeichen für LinAlg (Benötigt Tikz)
\newcommand*\circledr[1]
{
\tikz [baseline = (char.base)]
{
\node [shape = circle, draw = red, inner sep = 2pt, text = black] (char) {#1};
}
}
\newcommand*\circledb[1]
{
\tikz [baseline = (char.base)]
{
\node [shape = circle, draw = blue, inner sep = 2pt, text = black] (char) {#1};
}
}
%Römische Zahlen
\makeatletter
\newcommand*{\rom}[1]{\expandafter\@slowromancap\romannumeral #1@}
\makeatother
\begin{document}
%Titel mit Inhaltsverzeichniss
\maketitle
\tableofcontents
\thispagestyle{empty} %Auf der ersten Seite keine kopf und Fusszeilen
\newpage
\pagestyle{fancy}
%\raggedbottom %Inhalt nicht auf ganze seite verteilen
\input{section/Trigo.tex} %Pascal
\newpage
\input{section/Differenzieren.tex} %Jonas
\newpage
\input{section/Integrieren.tex} %Jonas
\newpage
\input{section/Potenzgesetze.tex} %Pascal
\newpage
\input{section/KomplexeZahlen.tex} %Nithu
\newpage
\input{section/KomplexeAbbildungen.tex} %Nithu
\newpage
\input{section/LinAlg.tex} %Simon
\newpage
\input{section/WarStat.tex} %Simon
\newpage
\input{section/Fourier.tex} %Nithu}
\newpage
\input{section/InTra.tex} %Pascal
\newpage
\input{section/Spektren.tex} %Nithu
\newpage
\input{section/Tabellen.tex} %Nithu
%Erst später
%\newpage
%\input{section/FuVar.tex}
\end{document}