]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - locale/de/pgsrc/Hilfe%2FGraphVizPlugin
Wikicreole syntax for verbatim
[SourceForge/phpwiki.git] / locale / de / pgsrc / Hilfe%2FGraphVizPlugin
1 Date: Sun,  5 Jul 2009 21:04:20 +0000
2 Mime-Version: 1.0 (Produced by PhpWiki 1.3.13)
3 X-Rcs-Id: $Id$
4 Content-Type: application/x-phpwiki;
5   pagename=Hilfe%2FGraphVizPlugin;
6   flags="";
7   markup=2;
8   charset=utf-8
9 Content-Transfer-Encoding: binary
10
11 ==== Beispiel
12
13 {{{
14 <<GraphViz
15 digraph automata_0 {
16         size ="8.5, 11";
17         node [shape = circle];
18         0 [ style = filled, color=lightgrey ];
19         2 [ shape = doublecircle ];
20         0 -> 2 [ label = "a " ];
21         0 -> 1 [ label = "other " ];
22         1 -> 2 [ label = "a " ];
23         1 -> 1 [ label = "other " ];
24         2 -> 2 [ label = "a " ];
25         2 -> 1 [ label = "other " ];
26         "Machine: a" [ shape = plaintext ];
27 }
28 >>
29 }}}
30
31 wird angezeigt als
32
33 <<GraphViz
34 digraph automata_0 {
35         size ="8.5, 11";
36         node [shape = circle];
37         0 [ style = filled, color=lightgrey ];
38         2 [ shape = doublecircle ];
39         0 -> 2 [ label = "a " ];
40         0 -> 1 [ label = "other " ];
41         1 -> 2 [ label = "a " ];
42         1 -> 1 [ label = "other " ];
43         2 -> 2 [ label = "a " ];
44         2 -> 1 [ label = "other " ];
45         "Machine: a" [ shape = plaintext ];
46 }
47 >>
48
49 ----
50 PhpWikiDokumentation Hilfe:WikiPlugin