<term-display> Term-Display

Non-TBX tagging of term and definition entries, which may be appearance-oriented or tagged semantically with terms, definitions, parts of speech, etc.
This element is intended to be tagged in display sequence, as a supplement or alternative to the more structured <tbx:termEntry>.

Usage/Remarks

Tagging Terms and Definitions in NISO STS

There are two very different strategies for tagging terms and definitions. Both structures occur optionally inside a Term Section (<term-sec>) in NISO STS standards or adoption document: one is TBX and the other is a simpler, less powerful TBX-alternative.
  • TBX: TBX is a concept-oriented encoding of terminological data. The TBX element <tbx:termEntry> models a term using the TBX-namespaced vocabulary and ontology for terms, which can record information about any number of synonymous terms in multiple languages. The TBX vocabulary used in NISO STS is derived and extended from ISO 30042.
  • Term Display: The NISO STS element <term-display> uses natural language to describe terms, and may OR MAY NOT incorporate semantic term elements such as definition (<def> and part of speech <part-of-speech>). Semantic tagging is encouraged, but nothing is enforced.
An organization can choose to use one or the other or; the two encodings may appear side-by-side as equivalents. Processes that deal with NISO STS documents should be prepared to see either (or both) forms of a term entry and to use one or the other (or both) as appropriate.

Tagging with Term-Display

When to Use — The <term-display> element is a more appearance-oriented encoding of terminological data that may be used when:
  • By a standards organization that chooses not to employ TBX,
  • When is difficult to generate the desired formatted display from a TBX entry, or
  • For backfile conversion, in cases where it is difficult to create a useful TBX term entry from an appearance-oriented input document.
Rationale —The looser term display description of a term and its definition (potentially containing nothing but undifferentiated text) was designed to:
  • Enable tagging term and definition content in the sequence in which that content appears in the standards document;
  • Enable, but not require, tagging of the principle semantic components of term and definition sections (such as the term, the definition, related elements, part of speech, etc.);
  • Enable tagging that will allow extraction of terms and definitions for use in glossaries containing terms and definitions from many standards; and
  • Make tagging existing terms and definitions easier (in some senses) than using the more structured TBX tagging.
Using <term-display-string> — Sometimes there is a need to place text into <term-display>, but <term-display> may only contain elements, not narrative material. Holding such content is the purpose of <term-display-string>.
The element <term-display-string> is the preferred method for marking up additional material in the <term-display> that is not covered by one of the semantic elements (such as term and part-of-speech). Such material may include punctuation used with the terms that is not part of a term, line breaks between terms and translations, and generated content.
Attributes

Base Attributes

xml:lang (default = en)
Models and Context
May be contained in
Description
Content Model
<!ELEMENT  term-display
                        %term-display-model;                         >
Expanded Content Model

(title*, (def | part-of-speech | pronunciation | related-term | term | term-source | term-display-string | p | address | alternatives | array | boxed-text | chem-struct-wrap | code | fig | fig-group | graphic | media | non-normative-note | normative-note | non-normative-example | normative-example | notes-group | preformat | supplementary-material | table-wrap | table-wrap-group | disp-formula | disp-formula-group | def-list | list | tex-math | mml:math | related-article | related-object | disp-quote | speech | statement | verse-group)*)

Tagged Samples
As the content of a <term-sec>
...
<sec sec-type="terms">
 <label>3</label>
 <title>DEFINITIONS</title>
 ...
 <term-sec>
  <label>3.2</label>
  <term-display>
   <term>Acquisition Management Systems Control (AMSC) Number</term>
   <def>
    <p>A control number assigned by the ASSIST Automated Document Number Module
     which indicates that a data item description (DID) or a defense
     specification or standard that cites DIDs has been cleared for use by 
     the DoD.</p>
   </def>
  </term-display>
 </term-sec>
 <term-sec>
  <label>3.3</label>
  <term-display>
   <term>ASSIST</term>
   <def>
    <p>The official database containing information about standardization
     documents (to include DIDs) used in the DoD. ASSIST also provides 
     electronic access to government documents included in the 
     database over the Internet. ASSIST can be accessed at
     <ext-link xlink:href="https://assist.dla.mil/online/start/">
     https://assist.dla.mil/online/start/</ext-link>.</p>
   </def>
  </term-display>
 </term-sec>
</sec>
...
With <tbx:termEntry> in a <term-sec>
...
<body>
 ...
 <term-sec id="sec_2.2.5">
  <label>2.2.5</label>
  <tbx:termEntry xmlns:tbx="urn:iso:std:iso:30042:ed-1" id="term_2.2.5">...</tbx:termEntry>
  <term-display id="h2238-33">
   <term>hoogwerker</term>
   <part-of-speech norm-part-of-speech="noun">noun</part-of-speech>
   <related-term related-term-type="acronym" rid="h2238-33.a">HW</related-term>
   <def>
    <p>hefplatform bestaande uit een werkplatform en 
     een hydraulische hefinrichting gemonteerd op een zelfaangedreven 
     chassis</p>
   </def>
   <non-normative-note>
    <p>Zie <std><std-ref>EN 1777</std-ref></std>.</p>
   </non-normative-note>
  </term-display>
 </term-sec>
</body>
...
Using <term-display-string>
...
<term-display>
 <term term-status="preferred">Kapselung</term>
 <term-display-string>(en: <term xml:lang="en" 
   term-type="translation">enclosure</term>)</term-display-string>
 <def>
  <p>Teil einer gasisolierten, metallgekapselten Schaltanlage, ...</p>
 </def>
</term-display>
...
Related Resources