Hallo, ich möchte diese Form erstellen: Könnte man dazu evtl. das shape tape benutzen? Open in Online-Editor
%\documentclass[margin=5pt, varwidth]{standalone} \documentclass{scrreprt} \usepackage[utf8]{inputenc} \usepackage[ngerman]{babel} \usepackage{tikz} \usetikzlibrary{shapes} \begin{document} \begin{tikzpicture} \coordinate (A) at (0,0); \coordinate (B) at (5,0); \coordinate (C) at (5,3); \coordinate (D) at (0,3); \draw (A) -- (B) -- (C) -- (D) -- (A); %\node[tape, draw, tape bend top=-30] at (1.5, 0) {EFGH}; \end{tikzpicture} \end{document} gefragt 19 Apr '16, 23:56 cis |
Hier ist eine Möglichkeit, wie man das Bild zeichnen könnte: Open in Online-Editor
\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: Es gibt noch eine ganze Reihe weiterer Optionen für |