WikiPískoviště: Porovnání verzí

Z Jaderňácká wiki
Přejít na: navigace, hledání
m (Created page with '=WikiPískoviště= ==Test matematiky== <math>\oint_{\partial S} \mathbf{E} \cdot \mathrm{d}\mathbf{l} = - \frac {\partial \Phi_{B,S}}{\partial t} </math>')
 
m
Řádka 1: Řádka 1:
 
=WikiPískoviště=
 
=WikiPískoviště=
  
==Test matematiky==
+
==Formátování==
<math>\oint_{\partial S} \mathbf{E} \cdot \mathrm{d}\mathbf{l} = - \frac {\partial \Phi_{B,S}}{\partial t} </math>
+
 
 +
===Seznamy===
 +
 
 +
*item 1
 +
*item 2
 +
*item 3
 +
 
 +
#item 1
 +
#item 2
 +
#item 3
 +
 
 +
*item 1
 +
**subitem 1
 +
**subitem 2
 +
***subsubitem 1
 +
***subsubitem 2
 +
 
 +
===Odkazy===
 +
 
 +
[[w:Main Page]]
 +
[[w:en:Main Page]]
 +
[[w:test]]
 +
[[pokus]]
 +
 
 +
===Tabulky===
 +
{|
 +
|+ caption
 +
! h1 !! h2 !! h3
 +
|-
 +
| xx || yy || zz
 +
|-
 +
| 11 || 22 || 33
 +
|}
 +
 
 +
==Rozšíření==
 +
 
 +
===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>
 +
 
 +
'''jhkjhjk'''
 +
 
 +
===Syntax highlighting===
 +
 
 +
<bash>
 +
#!/bin/sh
 +
echo "this is a test"
 +
</bash>
 +
 
 +
<perl>
 +
#!/usr/bin/perl -w
 +
use strict;
 +
print "Hello World!\n";
 +
</perl>
 +
 
 +
<c>
 +
#inclued "stdio.h"
 +
 
 +
int main(int argc, char *argv[]) {
 +
    printf("Hello World!");
 +
    return 0;
 +
}
 +
</c>
 +
 
 +
 
 +
===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>
 +
 
 +
 
 +
===GraphViz===
 +
 
 +
<graphviz>
 +
digraph G {
 +
size ="4,4";
 +
main [shape=box]; /* this is a comment */
 +
main -> parse [weight=8];
 +
parse -> execute;
 +
main -> init [style=dotted];
 +
main -> cleanup;
 +
execute -> { make_string; printf}
 +
init -> make_string;
 +
edge [color=red]; // so is this
 +
main -> printf [style=bold,label="100 times"];
 +
make_string [label="make a\nstring"];
 +
node [shape=box,style=filled,color=".7 .3 1.0"];
 +
execute -> compare;
 +
}
 +
</graphviz>
 +
 
 +
<graphviz>
 +
digraph G { node [URL="NetNode\N"];
 +
  "Cisco 3550" -> "DR1 SMC 8624" [style=bold,color=blue,label="optika"];
 +
  "Cisco 3550" -> "DR1 SMC 6750" [style=bold,color=green,label="drat"];
 +
  "Cisco 3550" -> "DR3 SMC 6624" [style=bold,color=green,label="drat"];
 +
  "Cisco 3550" -> "DR4 SMC 6624" [style=bold,color=green,label="drat"];
 +
  "Cisco 3550" -> "DR5 SMC 6624" [style=bold,color=green,label="drat"];
 +
  "DR1 SMC 6750" -> "DR2 SMC 1010" [color=green];
 +
  "DR1 SMC 6750" -> "VOIP" [color=black];
 +
}
 +
</graphviz>

Verze z 17. 9. 2009, 09:52

WikiPískoviště

Formátování

Seznamy

  • 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

Odkazy

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

Tabulky

caption
h1 h2 h3
xx yy zz
11 22 33

Rozšíření

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>

jhkjhjk

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>


Gnuplot

Gnuplot Plot

Gnuplot Plot


GraphViz