Difference between revisions of "Main Page"

From NMS
Jump to: navigation, search
(Tests)
(Extensions)
Line 52: Line 52:
  
 
<math>\int_0^{10} x=[\frac{1}{2}*x^2]_0^{10}</math>
 
<math>\int_0^{10} x=[\frac{1}{2}*x^2]_0^{10}</math>
 +
  
 
===Syntax highlighting===
 
===Syntax highlighting===
Line 74: Line 75:
 
}
 
}
 
</c>
 
</c>
 +
  
 
===Fjfi Test Extension===
 
===Fjfi Test Extension===
  
 
<fjfiTest>This is FJFI Test Extension</fjfiTest>
 
<fjfiTest>This is FJFI Test Extension</fjfiTest>
 +
 +
 +
===Gnuplot===
 +
 +
<gnuplot>
 +
  set output 'quadFuncs.png'
 +
  set size 0.4,0.4
 +
  set xlabel "x"
 +
  set ylabel "y"
 +
  plot [x=-4:4] x**2-3, -x**2
 +
</gnuplot>
 +
 +
<gnuplot>
 +
  set output 'func_approx.png'
 +
  plot '-' using 1:2 t 'quadratic approximation' with linesp lt 1 lw 3, \
 +
  '-' using 1:2 t 'cubic approximation' with linesp lt 2 lw 3
 +
  1 2
 +
  2 4
 +
  3 8
 +
  4 16
 +
  e
 +
  1 3
 +
  2 9
 +
  3 27
 +
  4 81
 +
  e
 +
</gnuplot>

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