WikiPískoviště: Porovnání verzí
Z Jaderňácká wiki
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>') |
|||
(Nejsou zobrazeny 3 mezilehlé verze od 3 dalších uživatelů.) | |||
Řádka 1: | Řádka 1: | ||
=WikiPískoviště= | =WikiPískoviště= | ||
− | == | + | {| class="wikitable" border="1" |
− | <math>\ | + | |+ <b>Základní informace</b> |
+ | |- | ||
+ | ! width="80pt"| Zkratka | ||
+ | | align="center" colspan="2" | 02LIAG | ||
+ | |- | ||
+ | ! Kredity | ||
+ | | colspan="2" align="center" | 6 kr. | ||
+ | |- | ||
+ | ! Přednášející | ||
+ | | colspan="2" align="center" | prof. inf. Radoslav Máslo, CSc. | ||
+ | |- | ||
+ | ! Semestr | ||
+ | | align="center" width="100pt" | letní || align="center" width="100pt" | zimní | ||
+ | |- | ||
+ | ! Hodiny | ||
+ | | | ||
+ | |align="center" | 0+2 | ||
+ | |- | ||
+ | ! Zakončení | ||
+ | | | ||
+ | | align="center"| z, zk | ||
+ | |} | ||
+ | |||
+ | ==Formátování== | ||
+ | |||
+ | ===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>\sum_{i=0}^{100} i</math> | ||
+ | |||
+ | <math>\int_0^{10} x=[\frac{1}{2}*x^2]_0^{10}</math> | ||
+ | |||
+ | '''jhkjhjk''' | ||
+ | |||
+ | <math> | ||
+ | \mathbf{M} = \begin{pmatrix} | ||
+ | 1 & 2 & 3 \\ | ||
+ | 4 & 5 & 6 \\ | ||
+ | 7 & 8 & 9 \end{pmatrix}. | ||
+ | </math> | ||
+ | |||
+ | |||
+ | |||
+ | ===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> | ||
+ | |||
+ | =test= | ||
+ | |||
+ | blablabla |
Aktuální verze z 2. 9. 2011, 15:57
Obsah
[skrýt]WikiPískoviště
Zkratka | 02LIAG | |
---|---|---|
Kredity | 6 kr. | |
Přednášející | prof. inf. Radoslav Máslo, CSc. | |
Semestr | letní | zimní |
Hodiny | 0+2 | |
Zakončení | z, zk |
Formátování
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
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>\sum_{i=0}^{100} i</math>
<math>\int_0^{10} x=[\frac{1}{2}*x^2]_0^{10}</math>
jhkjhjk
<math> \mathbf{M} = \begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{pmatrix}. </math>
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
GraphViz
test
blablabla