Graph mit tikz
Verfasst: Mi 14. Dez 2011, 20:30
Hallo!
ich versuche einen Graphen zu erstellen, der wie folgt aussieht:

Folgendes mache ich im Moment:
Das sieht aber von den Abständen blöd aus! Ich hätte das halt gerne ungefähr so, wie in dem Bild, oder schöner 
Ideen?
ich versuche einen Graphen zu erstellen, der wie folgt aussieht:

Folgendes mache ich im Moment:
\documentclass[11pt]{article} \usepackage{tikz} \usetikzlibrary{arrows,decorations.pathmorphing,backgrounds,fit,automata,shapes} \RequirePackage{atbegshi} \begin{document} \begin{tikzpicture}{->,>=stealth',shorten >=1pt,auto,semithick} \tikzstyle{every state}=[minimum size=16pt,fill=white,text=black, node distance=2cm] \tikzstyle{every pin edge}=[<-,shorten <=1pt] \node[state,shape=circle] (a) {$a$}; \node[state,shape=circle] (b) [below of = a] {$b$}; \node[state,shape=circle] (c) [above right of = a] {$c$}; \node[state,shape=circle] (d) [above right of = b] {$d$}; \node[state,shape=circle] (e) [below right of = b] {$e$}; ; \end{tikzpicture} \end{document}

Ideen?