]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - locale/de/pgsrc/Hilfe%2FGraphVizPlugin
utf-8 --> UTF-8
[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   markup=2;
7   charset=UTF-8
8 Content-Transfer-Encoding: binary
9
10 ==== Beispiel
11
12 {{{
13 <<GraphViz
14 digraph automata_0 {
15         size ="8.5, 11";
16         node [shape = circle];
17         0 [ style = filled, color=lightgrey ];
18         2 [ shape = doublecircle ];
19         0 -> 2 [ label = "a " ];
20         0 -> 1 [ label = "other " ];
21         1 -> 2 [ label = "a " ];
22         1 -> 1 [ label = "other " ];
23         2 -> 2 [ label = "a " ];
24         2 -> 1 [ label = "other " ];
25         "Machine: a" [ shape = plaintext ];
26 }
27 >>
28 }}}
29
30 wird angezeigt als
31
32 <<GraphViz
33 digraph automata_0 {
34         size ="8.5, 11";
35         node [shape = circle];
36         0 [ style = filled, color=lightgrey ];
37         2 [ shape = doublecircle ];
38         0 -> 2 [ label = "a " ];
39         0 -> 1 [ label = "other " ];
40         1 -> 2 [ label = "a " ];
41         1 -> 1 [ label = "other " ];
42         2 -> 2 [ label = "a " ];
43         2 -> 1 [ label = "other " ];
44         "Machine: a" [ shape = plaintext ];
45 }
46 >>
47
48 ----
49 [[PhpWikiDokumentation]] [[KategorieWikiPlugin]]