2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00

Bild geTikZ't

This commit is contained in:
Martin Thoma 2014-01-20 20:41:18 +01:00
parent 0a2920fbb6
commit 2bd2f39e40
11 changed files with 108 additions and 12 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 KiB

View file

@ -0,0 +1,26 @@
\begin{tikzpicture}
\tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
\node at (3,1) [red] {$\gamma_1$};
\node at (1,1) [blue] {$\gamma_1'$};
\node (a)[point,label=180:$a$] at (0,0) {};
\node (b)[point,label=-90:$b$] at (4, 0) {};
\node (c)[point,label=0:$c$] at (8, 0) {};
\draw [rounded corners, thick, red] (a) .. controls (1,-1) .. (2,0) .. controls (3,1) .. (b);
\draw [rounded corners, dashed] (a) .. controls (1,-0.8) .. (2,0) .. controls (3,0.8) .. (b);
\draw [rounded corners, dashed] (a) .. controls (1,-0.6) .. (2,0) .. controls (3,0.6) .. (b);
\draw [rounded corners, dashed] (a) .. controls (1,-0.4) .. (2,0) .. controls (3,0.4) .. (b);
\draw [rounded corners, dashed] (a) .. controls (1,-0.2) .. (2,0) .. controls (3,0.2) .. (b);
\draw [rounded corners, dashed] (a) .. controls (1, 0) .. (2,0) .. controls (3,0.0) .. (b);
\draw [rounded corners, dashed] (a) .. controls (1, 0.2) .. (2,0) .. controls (3,-0.2) .. (b);
\draw [rounded corners, dashed] (a) .. controls (1, 0.4) .. (2,0) .. controls (3,-0.4) .. (b);
\draw [rounded corners, dashed] (a) .. controls (1, 0.6) .. (2,0) .. controls (3,-0.6) .. (b);
\draw [rounded corners, dashed] (a) .. controls (1, 0.8) .. (2,0) .. controls (3,-0.8) .. (b);
\draw [rounded corners, dashed] (a) .. controls (1, 1.0) .. (2,0) .. controls (3,-1.0) .. (b);
\draw [rounded corners, thick, blue] (a) .. controls (1,1) .. (2,0) .. controls (3,-1) .. (b);
\draw [rounded corners, thick, green!80!black] (b) edge[bend right] node[below] {$\gamma_2'$} (c);
\draw [rounded corners, dashed] (b) edge[bend right=20] (c);
\draw [rounded corners, dashed] (b) edge[bend right=-20] (c);
\draw [rounded corners, dashed] (b) edge[bend right=10] (c);
\draw [rounded corners, dashed] (b) edge[bend right=-10] (c);
\draw [rounded corners, thick, orange] (b) edge[bend left] node[above] {$\gamma_1'$} (c);
\end{tikzpicture}