Ich finde:
\begin{tikzpicture}
\draw [->,decorate,decoration=snake] (0,0) -- (2,0);
\end{tikzpicture}
im TikZ-Handbuch, aber funktioniert nicht! Wie kann ich mit TikZ Schlangenkanten in Automaten zeichnen?
Antwort1
Der folgende Code wird kompiliert:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations.pathmorphing}
%\usepackage{pgfplots} %% Using pgfplots package alone works as well.
\begin{document}
\begin{tikzpicture}
\draw [->,decorate,decoration=snake] (0,0) -- (2,0);
\end{tikzpicture}
\end{document}
Dies ergibt die Ausgabe im Handbuch.
Aber wie das Handbuch vorschlägt,
\begin{tikzpicture}
\draw [->,decorate,decoration={snake,amplitude=.4mm,segment length=2mm,post length=1mm}]
(0,0) -- (3,0);
\end{tikzpicture}
ergibt ein besseres Ergebnis wie folgt: