misterjan
18-05-2008, 14:46
Hallo,
für eine Seminarausarbeitung erstelle ich mit dem Paket TiKZ ordered binary desision diagrams (OBDDs). Ein Beispiel ist das Folgende:
\begin{tikzpicture}
[level 1/.style={sibling distance=30mm},
level 2/.style={sibling distance=20mm}]
\node[circle,draw] (z) {z}
child {node[circle,draw] (x1) {x} [dashed]
child {node[circle,solid,draw] (y1) {y} [dashed]}
child {node[circle,solid,draw] (y2) {y} [solid]
child {node[rectangle,solid,draw] (0) {0} [dashed]}}}
child {node[circle,draw] (x2) {x}
child {node[circle,draw] (y3) {y} [dashed]
child {node[rectangle,solid,draw] (1) {1} [solid]}}
child {node[circle,draw] (y4) {y}}};
\draw[dashed] (y1) -- (0);
\draw[solid] (y1) -- (1);
\draw[solid] (y2) -- (1);
\draw[dashed] (y3) -- (0);
\draw[solid] (y4) -- (0);
\draw[dashed] (y4) -- (1);
\end{tikzpicture}
Dafür brauche ich jetzt noch eine Erweiterung derart, dass links neben jeden Knoten noch eine Beschriftung der Form "#x" mit x \in N. Weiß jemand wie so etwas erreiche?
für eine Seminarausarbeitung erstelle ich mit dem Paket TiKZ ordered binary desision diagrams (OBDDs). Ein Beispiel ist das Folgende:
\begin{tikzpicture}
[level 1/.style={sibling distance=30mm},
level 2/.style={sibling distance=20mm}]
\node[circle,draw] (z) {z}
child {node[circle,draw] (x1) {x} [dashed]
child {node[circle,solid,draw] (y1) {y} [dashed]}
child {node[circle,solid,draw] (y2) {y} [solid]
child {node[rectangle,solid,draw] (0) {0} [dashed]}}}
child {node[circle,draw] (x2) {x}
child {node[circle,draw] (y3) {y} [dashed]
child {node[rectangle,solid,draw] (1) {1} [solid]}}
child {node[circle,draw] (y4) {y}}};
\draw[dashed] (y1) -- (0);
\draw[solid] (y1) -- (1);
\draw[solid] (y2) -- (1);
\draw[dashed] (y3) -- (0);
\draw[solid] (y4) -- (0);
\draw[dashed] (y4) -- (1);
\end{tikzpicture}
Dafür brauche ich jetzt noch eine Erweiterung derart, dass links neben jeden Knoten noch eine Beschriftung der Form "#x" mit x \in N. Weiß jemand wie so etwas erreiche?