<term-head>
Definition List: Term Head
Heading over the first column (the term column) of a definition list (two-part list).
Content Model
<!ELEMENT term-head (#PCDATA %term-head-elements;)* >
Expanded Content Model
(#PCDATA | email | ext-link | uri | bold | fixed-case | italic | monospace | overline | roman | sans-serif | sc | strike | underline | ruby | alternatives | inline-graphic | chem-struct | inline-formula | abbrev | named-content | styled-content | fn | target | xref | sub | sup)*
Description
Any combination of:
- Text, numbers, or special characters
- Linking Elements
- Emphasis Elements
- <alternatives> Alternatives For Processing
- Inline Display Elements
- <chem-struct> Chemical Structure (Display)
- <inline-formula> Formula, Inline
- Other Inline Elements
- <fn> Footnote
- <target> Target of an Internal Link
- <xref> X (cross) Reference
- Baseline Change Elements
This element may be contained in:
Example
...
<back>...
<glossary>
<def-list>
<title>ABBREVIATIONS</title>
<term-head>Abbreviation</term-head>
<def-head>Expansion</def-head>
<def-item>
<term id="G1">PAP I</term>
<def><p>poly(A)polymerase I</p></def>
</def-item>
<def-item>
<term id="G2">PNPase</term>
<def><p>polynucleotide phosphorylase</p></def>
</def-item>
</def-list>
</glossary>
...</back>
...