Difference between revisions of "Main Page"

From NMS
Jump to: navigation, search
(Extensions)
(Extensions)
Line 107: Line 107:
 
   e
 
   e
 
</gnuplot>
 
</gnuplot>
 +
 +
 +
===GraphViz===
 +
 +
<dot_graph>
 +
digraph finite_state_machine {
 +
        rankdir=LR;
 +
        size="8,5"
 +
        node [shape = doublecircle]; LR_0 LR_3 LR_4 LR_8;
 +
        node [shape = circle];
 +
        LR_0 -> LR_2 [ label = "SS(B)" ];
 +
        LR_0 -> LR_1 [ label = "SS(S)" ];
 +
        LR_1 -> LR_3 [ label = "S($end)" ];
 +
        LR_2 -> LR_6 [ label = "SS(b)" ];
 +
        LR_2 -> LR_5 [ label = "SS(a)" ];
 +
        LR_2 -> LR_4 [ label = "S(A)" ];
 +
        LR_5 -> LR_7 [ label = "S(b)" ];
 +
        LR_5 -> LR_5 [ label = "S(a)" ];
 +
        LR_6 -> LR_6 [ label = "S(b)" ];
 +
        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>

Revision as of 01:20, 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

<dot_graph> digraph finite_state_machine {

       rankdir=LR;
       size="8,5"
       node [shape = doublecircle]; LR_0 LR_3 LR_4 LR_8;
       node [shape = circle];
       LR_0 -> LR_2 [ label = "SS(B)" ];
       LR_0 -> LR_1 [ label = "SS(S)" ];
       LR_1 -> LR_3 [ label = "S($end)" ];
       LR_2 -> LR_6 [ label = "SS(b)" ];
       LR_2 -> LR_5 [ label = "SS(a)" ];
       LR_2 -> LR_4 [ label = "S(A)" ];
       LR_5 -> LR_7 [ label = "S(b)" ];
       LR_5 -> LR_5 [ label = "S(a)" ];
       LR_6 -> LR_6 [ label = "S(b)" ];
       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>