43 lines
642 B
XML
43 lines
642 B
XML
<?xml version='1.0'?>
|
|
<!DOCTYPE book SYSTEM "/usr/share/sgml/docbook/dtd/xml/4.2/docbookx.dtd">
|
|
<book><title>foo</title>
|
|
|
|
<chapter><title>bar</title>
|
|
|
|
<para>
|
|
foo
|
|
</para>
|
|
|
|
<informaltable>
|
|
<tgroup cols="1">
|
|
<tbody>
|
|
<row>
|
|
<entry>foo</entry></row>
|
|
<row><entry>bar</entry></row>
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
|
|
<table><title>bar</title>
|
|
<tgroup cols="1">
|
|
<tbody>
|
|
<row><entry>bar</entry></row>
|
|
</tbody>
|
|
</tgroup>
|
|
</table>
|
|
|
|
</chapter>
|
|
|
|
<glossary>
|
|
<glossentry><glossterm>foo</glossterm>
|
|
<indexterm><primary>foo</primary></indexterm>
|
|
<glossdef>
|
|
<para>
|
|
Some appropriate definition goes here.
|
|
</para>
|
|
</glossdef>
|
|
</glossentry>
|
|
</glossary>
|
|
|
|
</book>
|