mirror of
https://github.com/vale981/TUD_MATH_BA
synced 2025-03-05 17:41:41 -05:00
17 lines
No EOL
438 B
TeX
17 lines
No EOL
438 B
TeX
\documentclass{standalone}
|
|
|
|
\usepackage{tikz}
|
|
|
|
\begin{document}
|
|
|
|
\begin{tikzpicture}
|
|
\draw plot [smooth] coordinates {(-1,-0.7) (0,0) (2.5,5) (5,0) (6,-0.7)};
|
|
\draw (0.5,5) to [bend left=12] (4.5,4.5);
|
|
\draw[fill=blue!50] plot [smooth] coordinates {(-1,-0.7) (0,0) (2.5,5) (5,0) (6,-0.7)};
|
|
|
|
\node at (2.5,2.5) (a) {Hindernis};
|
|
\node at (5.2,4.5) (b) {$K(x)$};
|
|
\node at (5.5,0.3) (c) {$\varphi(x)$};
|
|
\end{tikzpicture}
|
|
|
|
\end{document} |