1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
<!DOCTYPE glossary PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<glossary><title>Example Glossary</title>
<para>
This is not a real glossary, it's just an example.
</para>
<!-- ... -->
<glossdiv><title>E</title>
<glossentry id="xml"><glossterm>Extensible Markup Language</glossterm>
<acronym>XML</acronym>
<glossdef>
<para>Some reasonable definition here.</para>
<glossseealso otherterm="sgml">SGML</glossseealso>
</glossdef>
</glossentry>
</glossdiv>
<!-- ... -->
<glossdiv><title>S</title>
<glossentry><glossterm>SGML</glossterm>
<glosssee otherterm="sgml"/>
</glossentry>
<glossentry id="sgml"><glossterm>Standard Generalized
Markup Language</glossterm><acronym>SGML</acronym>
<abbrev>ISO 8879:1986</abbrev>
<glossdef>
<para>Some reasonable definition here.</para>
<glossseealso otherterm="xml">XML</glossseealso>
</glossdef>
</glossentry>
</glossdiv>
</glossary>
|