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
|
%
% laurent.tex -- Laurent-Reihen und Cauchy-Integral
%
% (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,calc,decorations.markings}
\begin{document}
\def\skala{1}
\begin{tikzpicture}[>=latex,thick,scale=\skala]
\coordinate (Z0) at (1.5,1);
\def\d{0.03}
\draw[->] (-2.1,0) -- (4.8,0) coordinate[label={$\operatorname{Re}z$}];
\draw[->] (0,-2.1) -- (0,4.3) coordinate[label={$\operatorname{Im}z$}];
\fill[color=red!20,opacity=0.7] (Z0) circle[radius=2.5];
\fill[color=white] (Z0) circle[radius=0.2];
\draw[color=red] (Z0) circle[radius=2.5];
\draw[color=red] (Z0) circle[radius=0.2];
\fill[color=white] ($(Z0)+(0,-\d)$) rectangle ($(Z0)+(3,\d)$);
\begin{scope}[decoration={
markings,
mark=at position 0.5 with {\arrow{>}}}
]
\draw[color=red,postaction={decorate}]
($(Z0)+({asin(-\d/2.5)}:2.5)$)
--
($(Z0)+({asin(-\d/0.2)}:0.2)$);
\draw[color=red,postaction={decorate}]
($(Z0)+({asin(\d/0.2)}:0.2)$)
--
($(Z0)+({asin(\d/2.5)}:2.5)$);
\end{scope}
\draw (Z0) circle[radius=0.05];
\node at ($(Z0)+(-0.1,-0.1)$) [below left] {$z_0$};
\node[color=red] at (2.75,1) [above] {$l_1$};
\node[color=red] at (2.75,1) [below] {$l_2$};
\node[color=red] at ($(Z0)+(45:2.5)$) [above right] {$\gamma_1$};
\node[color=red] at ($(Z0)+(0,0.2)$) [above] {$\gamma_2$};
\end{tikzpicture}
\end{document}
|