<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 a <label> that provides it with a number, followed by an optional <title> naming the entire list, followed by optional headings for terms and their definitions. <term-head> contains the heading over the first (term) column, and <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 <def>s are paired in <def-item>s. Definition lists are recursive, so following all the terms and definitions, there may be one or more embedded <def-list> elements.
Attributes

Base Attributes

Models and Context
May be contained in
Model Description
Tagged Sample

Heading for <def-list> first column [rare in standards]

...
<def-list>
 <term-head>Term</term-head>
 <def-head>Definition</def-head>
 <def-item>
  <term>back matter</term>
  <def><p>Any material printed at the end of the journal, after 
   the main articles. May include ...</p></def>
 </def-item>
 ...
</def-list>
...