3.2. My external section

Again, just a simple paragraph, and after the paragraph an ordered list.

The next examples show you an orderd list with numbers and an ordered list with letter

 <para>
 <orderedlist>
 <!-- The title could also be omitted -->
 <listitem><para>This is the first item</para></listitem>
 <listitem><para>This is the second item</para></listitem>
 <listitem><para>This is the third item</para></listitem>
 </orderedlist>
 </para>
 <!-- The list hasn't to be within a para -->
 <orderedlist numeration="loweralpha">
 <!-- The title could also be omitted -->
 <listitem><para>This is the first item</para></listitem>
 <listitem><para>This is the second item</para></listitem>
 <listitem><para>This is the third item</para></listitem>
 </orderedlist>

  1. This is the first item

  2. This is the second item

  3. This is the third item

  1. This is the first item

  2. This is the second item

  3. This is the third item

And again something for the index page.

 <para>
 Again something for the index. Tiger are big cats<indexterm><primary>Animal</primary><secondary>tiger</secondary></indexterm>.
 </para>
 <para>Something more complicated... a simple table<indexterm><primary>table</primary></indexterm>.</para>

Again something for the index. Tiger are big cats.

Something more complicated... a simple table.

And now a simple table

 <table>
 <title>A table can have a title</title>
 <tgroup cols="4">
 <colspec align="right" colwidth="*"/>
 <colspec align="left" colwidth="2*"/>
 <colspec align="center" colwidth="3*"/>
 <colspec align="right" colwidth="*"/>
 <thead>
 <row>
 <entry>number</entry>
 <entry>a simple text</entry>
 <entry>more text</entry>
 <entry>value</entry>
 </row>
 </thead>
 <tbody>
 <row>
 <entry>1</entry>
 <entry>second</entry>
 <entry>something to the center</entry>
 <entry>1234</entry>
 </row>
 <row>
 <entry>2</entry>
 <entry>third</entry>
 <entry>less</entry>
 <entry>99887766</entry>
 </row>
 </tbody>
 </tgroup>
 </table>
numbera simple textmore textvalue
1secondsomething to the center1234
2thirdless99887766

Table 3.1. A table can have a title