]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - locale/de/pgsrc/Hilfe%2FGraphVizPlugin
Merge OldTextFormattingRules into TextFormattingRules; Rename _GroupInfo --> DebugGro...
[SourceForge/phpwiki.git] / locale / de / pgsrc / Hilfe%2FGraphVizPlugin
1 Date: Fri, 10 Sep 2010 13:48:42 +0000
2 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0)
3 Content-Type: application/x-phpwiki;
4   pagename=Hilfe%2FGraphVizPlugin;
5   flags="";
6   charset=UTF-8
7 Content-Transfer-Encoding: binary
8
9 ==== Beispiel
10
11 {{{
12 <<GraphViz
13 digraph automata_0 {
14         size ="8.5, 11";
15         node [shape = circle];
16         0 [ style = filled, color=lightgrey ];
17         2 [ shape = doublecircle ];
18         0 -> 2 [ label = "a " ];
19         0 -> 1 [ label = "other " ];
20         1 -> 2 [ label = "a " ];
21         1 -> 1 [ label = "other " ];
22         2 -> 2 [ label = "a " ];
23         2 -> 1 [ label = "other " ];
24         "Machine: a" [ shape = plaintext ];
25 }
26 >>
27 }}}
28
29 wird angezeigt als
30
31 <<GraphViz
32 digraph automata_0 {
33         size ="8.5, 11";
34         node [shape = circle];
35         0 [ style = filled, color=lightgrey ];
36         2 [ shape = doublecircle ];
37         0 -> 2 [ label = "a " ];
38         0 -> 1 [ label = "other " ];
39         1 -> 2 [ label = "a " ];
40         1 -> 1 [ label = "other " ];
41         2 -> 2 [ label = "a " ];
42         2 -> 1 [ label = "other " ];
43         "Machine: a" [ shape = plaintext ];
44 }
45 >>
46
47 ----
48 [[PhpWikiDokumentation]] [[KategorieWikiPlugin]]