glossary — A glossary.
A glossary contains a collection of terms and brief descriptions or definitions of those terms.
Formatted as a displayed block. A glossary in a book frequently causes a forced page break in print media.
Common attributes and common linking attributes.
Specifies an identifying string for presentation purposes
Identifies the editorial or publication status of the element on which it occurs
The following elements occur in glossary: address, anchor, bibliography, bibliolist, blockquote, bridgehead, calloutlist, dialogue, drama, epigraph, equation, example, figure, formalpara, glossdiv, glossentry, glosslist, indexterm (db.indexterm.endofrange), indexterm (db.indexterm.singular), indexterm (db.indexterm.startofrange), info (db.info), info (db.titleforbidden.info), informalequation, informalexample, informalfigure, informaltable, itemizedlist, literallayout, mediaobject, note, orderedlist, para, poetry, procedure, qandaset, remark, revhistory, sidebar, simpara, simplelist, subtitle, table, task, title, titleabbrev, variablelist.
1 <glossary xmlns='http://docbook.org/ns/docbook'> 2 <title>Example Glossary</title> 4 <para>This is not a real glossary, it's just an example. </para> 6 <!-- ... --> 8 <glossdiv><title>E</title> 10 <glossentry xml:id="xml"><glossterm>Extensible Markup Language</glossterm> 12 <acronym>XML</acronym> <glossdef> 14 <para>Some reasonable definition here.</para> <glossseealso otherterm="sgml">SGML</glossseealso> 16 </glossdef> </glossentry> 18 </glossdiv> 20 <!-- ... --> 22 <glossdiv><title>S</title> 24 <glossentry><glossterm>SGML</glossterm> 26 <glosssee otherterm="sgml"/> </glossentry> 28 <glossentry xml:id="sgml"><glossterm>Standard Generalized 30 Markup Language</glossterm><acronym>SGML</acronym> <abbrev>ISO 8879:1986</abbrev> 32 <glossdef> <para>Some reasonable definition here.</para> 34 <glossseealso otherterm="xml">XML</glossseealso> </glossdef> 36 </glossentry> 38 </glossdiv> </glossary>
This is not a real glossary, it's just an example.