aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/080-funktionentheorie/images/integralanalytisch.tex
blob: a407eed98a6c4dba945f7bb5f5cf0e6aab21b26d (plain)
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
%
% integralanalytisch.tex -- Illustration zum Beweis, das das Cauchy-Integral
%                           auf eine analytische Funktion führt
%
% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
%
\documentclass[tikz]{standalone}
\usepackage{amsmath}
\usepackage{times}
\usepackage{txfonts}
\usepackage{pgfplots}
\usepackage{csvsimple}
\usetikzlibrary{arrows,intersections,math}
\begin{document}
\def\skala{1}
\begin{tikzpicture}[>=latex,thick,scale=\skala]

\fill[color=blue!20] (0,0) circle[radius=1.5];
\draw[color=blue,line width=0.7pt] (0,0) circle[radius=1.5];

\draw[->] (0,0) -- (-150:1.5);
\node at (-150:1.0) [below] {$\varrho$};

\begin{scope}
\clip (-4,-3) rectangle (4,3);
\draw[color=red, line width=1.4pt]
	 (-3,0.5) 
	.. controls (-4,-0.5) and (-3,-2) ..
	(-2,-2)
	.. controls (-1,-2) and (-1,-1.5) ..
	(0,-1.5)
	.. controls (1.0,-1.5) and (1.0,-3) ..
	(2,-3)
	.. controls (5,-3) and (3,5) ..
	(-1,2);
\end{scope}

\node[color=red] at (3.2,-1.5) {$\gamma$};

\coordinate (Z) at (1,0.5);

\fill[color=white] (Z) circle[radius=0.05];
\draw (Z) circle[radius=0.05];
\node at (Z) [above] {$z$};

\draw[->] (0,-3.1) -- (0,3.3) coordinate[label={left:$\operatorname{Im}z$}];
\draw[->] (-4.1,0) -- (4.3,0) coordinate[label={$\operatorname{Re}z$}];

\end{tikzpicture}
\end{document}