<glossary>
Glossary Elements List
Section whose content is typically a list of terms and definitions, usually tagged as
one or more two-part lists called <def-list>.
Typically part of the back matter of a document.
Remarks
The model for <glossary> is deliberately
broad in order to accommodate glossaries that are tabular, heavily annotated, constructed
as a series of notes, or otherwise unusually constructed.
Glossaries are recursive with various levels indicated by containment, not by
different names for the embedded glossaries. A typical simple <glossary> may contain only a title and a <def-list>. A more complex <glossary> may be divided into several different lists of
terms, each headed by a title that describes the audience for the particular terms. These
glossaries inside a glossary are tagged using the <glossary> element rather than a different, explicitly named element such as a
<sub-glossary> or <glossary-sec>.
Attributes
Content Model
<!ELEMENT glossary %glossary-model; >
Expanded Content Model
(label?, title?, (address | alternatives | answer | answer-set | array | boxed-text | chem-struct-wrap | code | explanation | fig | fig-group | graphic | media | name-address-wrap | preformat | question | question-wrap | question-wrap-group | supplementary-material | table-wrap | table-wrap-group | disp-formula | disp-formula-group | def-list | list | tex-math | mml:math | p | related-article | related-object | ack | disp-quote | speech | statement | verse-group | x)*, glossary*, fn-group?)
Description
The following, in order:
- <label> Label (of an Equation, Figure, Reference, etc.), zero or one
- <title> Title, zero or one
- Any combination of:
- <address> Address/Contact Information
- <alternatives> Alternatives For Processing
- <answer> Answer to a Question
- <answer-set> Answer Set
- <array> Array (Simple Tabulation)
- <boxed-text> Boxed Text
- <chem-struct-wrap> Chemical Structure Wrapper
- <code> Code
- <explanation> Explanation
- <fig> Figure
- <fig-group> Figure Group
- <graphic> Graphic
- <media> Media Object
- <name-address-wrap> Name/Address Block Wrapper
- <preformat> Preformatted Text
- <question> Question
- <question-wrap> Question Wrapper
- <question-wrap-group> Question Wrapper Group
- <supplementary-material> Supplementary Material
- <table-wrap> Table Wrapper
- <table-wrap-group> Table Wrapper Group
- <disp-formula> Formula, Display
- <disp-formula-group> Formula, Display Group
- Lists
- Math Elements
- <p> Paragraph
- Related Material Elements
- <ack> Acknowledgments
- <disp-quote> Quote, Displayed
- <speech> Speech
- <statement> Statement, Formal
- <verse-group> Verse Form for Poetry
- <x> X - Generated Text and Punctuation
- <glossary> Glossary Elements List, zero or more
- <fn-group> Footnote Group, zero or one
This element may be contained in:
Example
...
<book-back>
<glossary id="bid.1237">
<title>Glossary</title>
<def-list>
<def-item>
<term id="bid.1238">3-D or 3D</term>
<def><p>Three-dimensional.</p></def>
</def-item>
<def-item>
<term id="bid.1722">Accession number</term>
<def><p>An Accession number is a unique identifier
given to a sequence when it is submitted to one of the
DNA repositories (GenBank, EMBL, DDBJ). The initial
deposition of a sequence record is referred to as version
1. If the sequence is updated, the version number is
incremented, but the Accession number will remain
constant.</p></def>
</def-item>
...
</def-list>
</glossary>
</book-back>
...