Show
Ignore:
Timestamp:
02/09/09 23:13:44 (16 years ago)
Author:
smidl
Message:

doc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • doc/latex/inline_dotgraph_1.dot

    r261 r264  
    11  
    2 digraph datalink { 
    3         node [shape=record]; 
    4         subgraph cluster0 { 
    5                 label = "Up"; 
    6         up [label="<1>|<2>|<3>|<4>|<5>"]; 
    7                 color = "white" 
    8 } 
    9         subgraph cluster1{ 
    10                 label = "Down"; 
    11                 labelloc = b; 
    12         down [label="<1>|<2>|<3>"]; 
    13                 color = "white" 
    14 } 
    15     up:1 -> down:1; 
    16     up:3 -> down:2; 
    17     up:5 -> down:3; 
    18 } 
     2        digraph datalink { 
     3                node [shape=record]; 
     4                subgraph cluster0 { 
     5                        label = "Up"; 
     6                up [label="<1>|<2>|<3>|<4>|<5>"]; 
     7                        color = "white" 
     8        } 
     9                subgraph cluster1{ 
     10                        label = "Down"; 
     11                        labelloc = b; 
     12                down [label="<1>|<2>|<3>"]; 
     13                        color = "white" 
     14        } 
     15            up:1 -> down:1; 
     16            up:3 -> down:2; 
     17            up:5 -> down:3; 
     18        } 
     19