<term-head> Definition List: Term Head

Heading over the first column (the term column) of a definition list (two-part list).
Related Elements
A <def-list> may take an optional <title> naming the entire list, followed by optional headings for terms and their definitions. The <term-head> contains the heading over the first (term) column, and the <def-head> contains the heading for the second (definition) column; neither serves as a container element for terms or definitions. Individual <term>s and their definitions (<def>s) are paired in <def-item>s.
Attributes

Base Attributes

Models and Context
May be contained in
Description
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 |
inline-media | chem-struct | inline-formula | mml:math | abbrev | index-term | index-term-range-end
| named-content | styled-content | fn | target | xref | sub | sup)*
Tagged Sample

Both list <title> and <term-head>

...
<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>
...