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
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]]])
reStructuredText
Paragraph.
- bullet
- another bullet
Linking
#anchorup and #anchordown
http://moinmoin.wikiwikiweb.de/ Python
Image Link
Smileys
Alert
Lists
Bullet
- first
- nested and numbered
- numbered lists are renumbered
- second
- third blockquote
- deeper
Glossary
- Term
- Definition
Drawing
Test of attachment 1
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()
Test of attachment 2
This time via ReSt.
Here is another link to tst.py.
And the file directly:
And inline to some image
And below
Heading 1
Heading 2
Heading 3
Heading 4
Documentation
Just testing
Fubar