emphasized text
|
emphasized text
|
strong emphasis
|
strong emphasis
|
literal text
|
literal text
|
*escaped special characters*
|
escaped special characters
|
external link
|
external link
|
|
|
Wikilink: Front Page
|
Wikilink: Front Page
|
H2O
|
H2O
|
10100
|
10100
|
strikeout
|
strikeout
|
$x = \frac{{ - b \pm \sqrt {b^2 - 4ac} }}{{2a}}$
|
$x = \frac{{ - b \pm \sqrt {b^2 - 4ac} }}{{2a}}$
If this looks like code, it's because jsMath is not installed on
your system. Contact your administrator to request it.
</para>
|
A simple footnote.
Or is it so simple?
|
A simple footnote.
Or is it so simple?
</para>
|
> an indented paragraph,
> usually used for quotations
|
<para>
an indented paragraph, usually used for quotations
</para>
|
#!/bin/sh -e
# code, indented four spaces
echo "Hello world"
|
!/bin/sh -e
code, indented four spaces
echo Hello world
|
* a bulleted list
* second item
- sublist
- and more
* back to main list
1. this item has an ordered
2. sublist
a) you can also use letters
b) another item
|
<listitem>
<para>
a bulleted list
</para>
</listitem>
<listitem>
<para>
second item
</para>
<itemizedlist spacing="compact">
<listitem>
<para>
sublist
</para>
</listitem>
<listitem>
<para>
and more
</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>
back to main list
</para>
<orderedlist numeration="arabic" spacing="compact">
<listitem>
<para>
this item has an ordered
</para>
</listitem>
<listitem>
<para>
sublist
</para>
<orderedlist numeration="loweralpha" spacing="compact">
<listitem>
<para>
you can also use letters
</para>
</listitem>
<listitem>
<para>
another item
</para>
</listitem>
</orderedlist>
</listitem>
</orderedlist>
</listitem>
|
Fruit Quantity
-------- -----------
apples 30,200
oranges 1,998
pears 42
Table: Our fruit inventory
|
<title>
Our fruit inventory
</title>
<tgroup cols="2">
<colspec align="left" />
<colspec align="right" />
<thead>
<row>
<entry>
Fruit
</entry>
<entry>
Quantity
</entry>
</row>
</thead>
<tbody>
<row>
<entry>
apples
</entry>
<entry>
30,200
</entry>
</row>
<row>
<entry>
oranges
</entry>
<entry>
1,998
</entry>
</row>
<row>
<entry>
pears
</entry>
<entry>
42
</entry>
</row>
</tbody>
</tgroup>
|