annotate toolboxes/graph_visualisation/share/graphviz/graphs/directed/oldarrows.gv @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
rev   line source
Daniel@0 1 digraph G {
Daniel@0 2 // leave some space for the head/taillabels
Daniel@0 3 graph [ranksep=1.5 splines=true overlap=false]
Daniel@0 4
Daniel@0 5 // to avoid confusion, remember this:
Daniel@0 6 // it's spelt tail/head, but it's read start/end
Daniel@0 7
Daniel@0 8 // emphasize theatrically
Daniel@0 9 // show only explicitly given head/tails
Daniel@0 10 // put head/tail labels farther from the node
Daniel@0 11 // edge [arrowsize=2 dir=none labeldistance=3]
Daniel@0 12 edge [dir=none labeldistance=3]
Daniel@0 13
Daniel@0 14 // not interested in node labels
Daniel@0 15 node [shape=circle width=0.5 label=""]
Daniel@0 16
Daniel@0 17 {
Daniel@0 18 edge [samehead=ahead samearrowhead=1]
Daniel@0 19 a->Z [arrowtail=none taillabel=none]
Daniel@0 20 b->Z [arrowtail=normal taillabel=normal]
Daniel@0 21 c->Z [arrowtail=inv taillabel=inv]
Daniel@0 22 d->Z [arrowtail=dot taillabel=dot]
Daniel@0 23 e->Z [arrowtail=odot taillabel=odot]
Daniel@0 24 f->Z [arrowtail=invdot taillabel=invdot]
Daniel@0 25 g->Z [arrowtail=invodot taillabel=invodot]
Daniel@0 26 h->Z [arrowtail=open taillabel=open]
Daniel@0 27 i->Z [arrowtail=halfopen taillabel=halfopen arrowhead=inv headlabel=samehead]
Daniel@0 28 j->Z [arrowtail=empty taillabel=empty]
Daniel@0 29 k->Z [arrowtail=invempty taillabel=invempty]
Daniel@0 30 l->Z [arrowtail=diamond taillabel=diamond]
Daniel@0 31 m->Z [arrowtail=odiamond taillabel=odiamond]
Daniel@0 32 n->Z [arrowtail=box taillabel=box]
Daniel@0 33 o->Z [arrowtail=obox taillabel=obox]
Daniel@0 34 p->Z [arrowtail=tee taillabel=tee]
Daniel@0 35 q->Z [arrowtail=crow taillabel=crow]
Daniel@0 36 }
Daniel@0 37 {
Daniel@0 38 edge [sametail=atail samearrowtail=1]
Daniel@0 39 Z->A [arrowhead=none headlabel=none]
Daniel@0 40 Z->B [arrowhead=normal headlabel=normal]
Daniel@0 41 Z->C [arrowhead=inv headlabel=inv]
Daniel@0 42 Z->D [arrowhead=dot headlabel=dot]
Daniel@0 43 Z->E [arrowhead=odot headlabel=odot]
Daniel@0 44 Z->F [arrowhead=invdot headlabel=invdot]
Daniel@0 45 Z->G [arrowhead=invodot headlabel=invodot]
Daniel@0 46 Z->H [arrowhead=open headlabel=open]
Daniel@0 47 Z->I [arrowhead=halfopen headlabel=halfopen arrowtail=inv taillabel=sametail]
Daniel@0 48 Z->J [arrowhead=empty headlabel=empty]
Daniel@0 49 Z->K [arrowhead=invempty headlabel=invempty]
Daniel@0 50 Z->L [arrowhead=diamond headlabel=diamond]
Daniel@0 51 Z->M [arrowhead=odiamond headlabel=odiamond]
Daniel@0 52 Z->N [arrowhead=box headlabel=box]
Daniel@0 53 Z->O [arrowhead=obox headlabel=obox]
Daniel@0 54 Z->P [arrowhead=tee headlabel=tee]
Daniel@0 55 Z->Q [arrowhead=crow headlabel=crow]
Daniel@0 56 }
Daniel@0 57 }