$Revision: 1666 $
$Date: 2002-06-12 07:19:37 -0400 (Wed, 12 Jun 2002) $
glossary — A glossary
glossary ::= (glossaryinfo
?, (%bookcomponent.title.content;
)?, (%component.mix;
)*, (glossdiv
+|glossentry
+),bibliography
?)
Name | Type | Default |
status | CDATA | None |
The following parameter entities contain glossary:
Parameter Entities | ||
%nav.class; | %partcontent.mix; |
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.
These elements contain glossary:
appendix
, article
, book
, chapter
, part
, preface
, sect1
, sect2
, sect3
, sect4
, sect5
, section
.
The following elements occur in glossary:
abstract
, address
, anchor
, authorblurb
, beginpage
, bibliography
, bibliolist
, blockquote
, bridgehead
, calloutlist
, caution
, classsynopsis
, cmdsynopsis
, constraintdef
, constructorsynopsis
, destructorsynopsis
, epigraph
, equation
, example
, fieldsynopsis
, figure
, formalpara
, funcsynopsis
, glossaryinfo
, glossdiv
, glossentry
, glosslist
, graphic
, graphicco
, highlights
, important
, indexterm
, informalequation
, informalexample
, informalfigure
, informaltable
, itemizedlist
, literallayout
, mediaobject
, mediaobjectco
, methodsynopsis
, msgset
, note
, orderedlist
, para
, procedure
, productionset
, programlisting
, programlistingco
, qandaset
, remark
, screen
, screenco
, screenshot
, segmentedlist
, sidebar
, simpara
, simplelist
, subtitle
, synopsis
, table
, task
, tip
, title
, titleabbrev
, variablelist
, warning
.
Status
identifies the editorial or publication
status of the Glossary
.
Publication status might be used to control formatting (for example, printing a “draft” watermark on drafts) or processing (perhaps a document with a status of “final” should not include any components that are not final).
<!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>