Hier ist eine Möglichkeit, wie man das Bild zeichnen könnte:
\documentclass[margin=5pt,]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\coordinate (A) at (0,0);
\coordinate (B) at (5,-.5);
\coordinate (C) at (6.7,2.7);
\coordinate (D) at (1.5,3);
\path [thick,draw,fill=lightgray!50]
(A)
to [out=5,in=160]
(B)
to [out=90, in=220,looseness=.8]
(C)
to [out=182, in=340]
(D)
to [out=220,in=85](A)
-- cycle
;
\end{tikzpicture}
\end{document}
Ergebnis:
![alt text][1]
Es gibt noch eine ganze Reihe weiterer Optionen für `to`, die man nutzen könnte. Sie sind im Abschnitt [Abschnitt 70.3 Curves der TikZ Dokumentation Dokumentation](http://mirrors.ctan.org/graphics/pgf/base/doc/pgfmanual.pdf#pgf.curve:to) erklärt.
[1]: http://texwelt.de/wissen/upfiles/tw_band.png