forked from Christof/numerik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
73 lines (55 loc) · 1.68 KB
/
main.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
\documentclass[a4paper]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{enumerate}
\selectlanguage{ngerman}
\usepackage[pdftex]{graphicx}
\usepackage{empheq}
\usepackage{todonotes}
\usepackage[a4paper,left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm]{geometry}
\usepackage{color}
\definecolor{rot}{cmyk}{.4,1,1,0} % hellroter Text
%befehl damit tag in align umgebung mit klammer über zwei zeilen möglich ist
\newcommand{\smarttag}[1]
{
\tag*{\makebox(80,0){\rule[4ex]{0pt}{1ex}$\bigg.\bigg\}${#1}}}
}
\newcommand{\Smarttag}[1]
{
\tag*{\makebox(80,0){\rule[10ex]{0pt}{1ex}$\Bigg.\Bigg\}${#1}}}
}
%werden wir sicher öfter brauchen
\newcommand{\Fhat}{
\hat{\mathbb{F}}
}
\newcommand{\F}{
\mathbb{F}
}
\newcommand{\Fhatfunc}[1]{$\Fhat$\,(#1) }
\newcommand{\LandauO}{\mathcal{O}}
\newcommand{\Landauo}{\scriptstyle \mathcal{o}}
\newcommand{\maxxab}{\underset{x \in [a, b]}{max}}
\newcommand{\maxmpo}{\underset{x \in [-1, 1]}{max}}
\newcommand{\sumizn}[1]{\sum\limits_{i=0}^{n}{#1}}
\newcommand{\xztoxn}{x_0,\,\ldots,\,x_n}
% workaround damit zeilenumbruch nach paragraph erfolgt
\newcommand{\example}[1]{\subparagraph{#1}$\;$ \\ }
\newcommand{\para}[1]{\paragraph{#1}$\;$ \\ }
\newcommand{\mustbe}{\overset{!}{=}}
\begin{document}
\title{Technische Numerik \\ Mitschrift}
\author{A. Schwarzl, C. Sirk}
\maketitle
\tableofcontents
\include{einfuehrung}
\include{approximation}
\include{integration}
\include{lineare_algebra}
\include{nichtlineare_gleichungen}
\include{dgl}
\section{Übungen}
\include{uebungen/uebung1}
\include{uebungen/uebung3}
\end{document}