Feel free to experiment here, after the four dashes below. Please do not create new pages without any meaningful content just to try it out!

Tip: Shift-click "HelpOnEditing" to open a second window with the help pages.


Formatting

italic bold typewriter

backtick typewriter (configurable)

bigger smaller

preformatted some more
and some more lines too

   1 def syntax(highlight):
   2     print "on"
   3     return None

How to disable line numbers

>>> from numpy import *
>>> a = arange(12)
>>> a = a.reshape(3,2,2)
>>> print a
[[[ 0  1]
  [ 2  3]]
 [[ 4  5]
  [ 6  7]]
 [[ 8  9]
  [10 11]]]
>>> a[...,0]                               # same as a[:,:,0]
array([[ 0,  2],
       [ 4,  6],
       [ 8, 10]])
>>> a[1:,...]                              # same as a[1:,:,:]
array([[[ 4,  5],
        [ 6,  7]],
       [[ 8,  9],
        [10, 11]]])

   1   public void main(String[] args]){
   2      System.out.println("Hello world!");
   3   } 
   4 

reStructuredText

Paragraph.

Linking

#anchorup and #anchordown

HelpOnEditing InterWiki

http://moinmoin.wikiwikiweb.de/ Python

EricsBroadcastingDoc

someone@the.inter.net

Image Link

wiki

Smileys

/!\ Alert

Lists

Bullet

Glossary

Term
Definition

Drawing

mytest

Test of attachment 1

tst.py

   1 #!/usr/bin/env python
   2 """
   3 Example: simple line plot.
   4 Show how to make and save a simple line plot with labels, title and grid
   5 """
   6 import math
   7 import numpy
   8 import pylab
   9 
  10 t = numpy.arange(0.0, 1.0+0.01, 0.01)
  11 s = numpy.cos(2*2*math.pi*t)
  12 pylab.plot(t, s)
  13 
  14 pylab.xlabel('time (s)')
  15 pylab.ylabel('voltage (mV)')
  16 pylab.title('About as simple as it gets, folks')
  17 pylab.grid(True)
  18 pylab.savefig('simple_plot')
  19 
  20 pylab.show()
tst.py

Test of attachment 2

This time via ReSt.

Here is another link to tst.py.

And the file directly:

   1 #!/usr/bin/env python
   2 """
   3 Example: simple line plot.
   4 Show how to make and save a simple line plot with labels, title and grid
   5 """
   6 import math
   7 import numpy
   8 import pylab
   9 
  10 t = numpy.arange(0.0, 1.0+0.01, 0.01)
  11 s = numpy.cos(2*2*math.pi*t)
  12 pylab.plot(t, s)
  13 
  14 pylab.xlabel('time (s)')
  15 pylab.ylabel('voltage (mV)')
  16 pylab.title('About as simple as it gets, folks')
  17 pylab.grid(True)
  18 pylab.savefig('simple_plot')
  19 
  20 pylab.show()

tst.py .

And inline to some image somepic

And below

http://c2.com/sig/wiki.gif

Heading 1

Heading 2

Heading 3

Heading 4

Documentation

DocumentationNew

WikiSandBox (last edited 2007-11-11 12:52:17 by Elby)