Difference between revisions of "Main Page"

From NMS
Jump to: navigation, search
(Extensions)
(GraphViz)
Line 111: Line 111:
 
===GraphViz===
 
===GraphViz===
  
<dot_graph>
+
<graphviz>
digraph finite_state_machine {
+
digraph G {
        rankdir=LR;
+
size ="4,4";
        size="8,5"
+
main [shape=box]; /* this is a comment */
        node [shape = doublecircle]; LR_0 LR_3 LR_4 LR_8;
+
main -> parse [weight=8];
        node [shape = circle];
+
parse -> execute;
        LR_0 -> LR_2 [ label = "SS(B)" ];
+
main -> init [style=dotted];
        LR_0 -> LR_1 [ label = "SS(S)" ];
+
main -> cleanup;
        LR_1 -> LR_3 [ label = "S($end)" ];
+
execute -> { make_string; printf}
        LR_2 -> LR_6 [ label = "SS(b)" ];
+
init -> make_string;
        LR_2 -> LR_5 [ label = "SS(a)" ];
+
edge [color=red]; // so is this
        LR_2 -> LR_4 [ label = "S(A)" ];
+
main -> printf [style=bold,label="100 times"];
        LR_5 -> LR_7 [ label = "S(b)" ];
+
make_string [label="make a\nstring"];
        LR_5 -> LR_5 [ label = "S(a)" ];
+
node [shape=box,style=filled,color=".7 .3 1.0"];
        LR_6 -> LR_6 [ label = "S(b)" ];
+
execute -> compare;
        LR_6 -> LR_5 [ label = "S(a)" ];
+
        LR_7 -> LR_8 [ label = "S(b)" ];
+
        LR_7 -> LR_5 [ label = "S(a)" ];
+
        LR_8 -> LR_6 [ label = "S(b)" ];
+
        LR_8 -> LR_5 [ label = "S(a)" ];
+
 
}
 
}
</dot_graph>
+
</graphviz>

Revision as of 01:23, 12 March 2006

Wiki software successfully installed.

Please see documentation on customizing the interface and the User's Guide for usage and configuration help.

Official pages

Quick links

Special:Allmessages MediaWiki:Sidebar Main Page

Tests

Formating

Lists

  • item 1
  • item 2
  • item 3
  1. item 1
  2. item 2
  3. item 3
  • item 1
    • subitem 1
    • subitem 2
      • subsubitem 1
      • subsubitem 2

Links

w:Main Page w:en:Main Page w:test pokus

Tables

Preformated

Extensions

LaTeX

<math>\alpha, \beta, \gamma, ...</math>

<math>x^2+y^2=z^2</math>

<math>\sum_{i=0}^100 i</math>

<math>\int_0^{10} x=[\frac{1}{2}*x^2]_0^{10}</math>


Syntax highlighting

<bash>

  1. !/bin/sh

echo "this is a test" </bash>

<perl>

  1. !/usr/bin/perl -w

use strict; print "Hello World!\n"; </perl>

<c>

  1. inclued "stdio.h"

int main(int argc, char *argv[]) {

   printf("Hello World!");
   return 0;

} </c>


Fjfi Test Extension

Text passed into example extension:
This is FJFI Test Extension
and the value for the arg 'argument' is
and the value for the arg 'argument2' is:


Gnuplot

Gnuplot Plot

Gnuplot Plot


GraphViz