One item in a definition (two-part) list.
Best Practice: While this element contains an optional <label> element, the <label> element should be included only in those circumstances where a formatting override is needed; <label> should NOT be used in the ordinary course of tagging.
<!ELEMENT def-item %def-item-model; >
(label?, term*, (def | x)*)
The following, in order:
...
<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-item>...</def-item>
...
</def-list>
</glossary>
...