<kwd-group>

Keyword Group

Container element for one set of keywords (such as <kwd>s, <nested-kwd>s, or <compound-kwd>s) used to describe a document.

Remarks

Related Essay: For a discussion on the use of <kwd-group>, see Keywords.
Usage: A document may take multiple sets of keywords, with the @kwd-group-type, @specific-use, or @xml:lang attributes used to discriminate between them. The <kwd> element does not take the @xml:lang attribute; that is reserved for the <kwd-group>. This means that keywords must be sorted by language and entered in language groups.
The @kwd-group-type attribute most commonly names the source of the keywords, such as “mesh”, “ISO-463”, or “author-generated”. But it is also appropriate to use @kwd-group-type to record the type of keywords, for example, “hierarchical” for keywords that are grouped into a hierarchy, “abbreviations” for keywords that contain an abbreviation and its expansion, or “code” for keywords that contain a code and its text but where the source of the codes is unknown.

Attributes

Content Model

<!ELEMENT  kwd-group    %kwd-group-model;                            >

Expanded Content Model

(label?, title?, (kwd | compound-kwd | nested-kwd)+)

Description

This element may be contained in:

Example 1

An author’s list of keywords for a document:
...
<article-meta>
...
<abstract>...</abstract>
<kwd-group kwd-group-type="author">
<kwd>DNA analysis</kwd>
<kwd>gene expression</kwd>
<kwd>parallel cloning</kwd>
<kwd>fluid microarray</kwd>
</kwd-group>
</article-meta>
...

Example 2

Keyword group with compound keywords:
... 
<kwd-group> 
<compound-kwd>
<compound-kwd-part content-type="code">B01D57/02</compound-kwd-part>
<compound-kwd-part content-type="value">By electrophoresis</compound-kwd-part>
</compound-kwd>
...
</kwd-group>
...

Example 3

Multiple keyword groups for a document (including Japanese):
...
<article-meta>
...  
<kwd-group xml:lang="en">
<kwd>heated air</kwd>
</kwd-group>

<kwd-group xml:lang="ja">
<kwd>加温空気</kwd>
</kwd-group>
...  
</article-meta>
...

Example 4

Multiple keyword groups for a document, including those created by Inspec:
...
<article-meta>
...  
<kwd-group kwd-group-type="Inspec">
<kwd>diversity reception</kwd>
<kwd>Doppler radar</kwd>
<kwd>Doppler shift</kwd>
<kwd>encoding</kwd>
<kwd>optimisation</kwd>
<kwd>orthogonal codes</kwd>
<kwd>radar signal processing</kwd>
<kwd>MIMO radar</kwd>
</kwd-group>

<kwd-group kwd-group-type="uncontrolled">
<kwd>polyphase codes optimisation</kwd>
<kwd>multiinput-multioutput radars</kwd>
<kwd>radar performance</kwd>
<kwd>diversity technique</kwd>
<kwd>MIMO radar transmission</kwd>
<kwd>diversity performance</kwd>
<kwd>orthogonal codes</kwd>
<kwd>Doppler sensitive</kwd>
<kwd>side-lobes level</kwd>
<kwd>adaptive clonal selection algorithm</kwd>
<kwd>polyphase coded orthogonal signals</kwd>
<kwd>aperiodic autocorrelation side lobe</kwd>
<kwd>Doppler shift tolerance</kwd>
<kwd>sustainable Doppler shifts</kwd>
<kwd>Doppler tolerance performances</kwd>
</kwd-group>

<kwd-group kwd-group-type="Inspec-class">
<compound-kwd>
<compound-kwd-part content-type="code">B0260</compound-kwd-part>
<compound-kwd-part content-type="text">Optimisation 
techniques</compound-kwd-part>
</compound-kwd>
<compound-kwd>
<compound-kwd-part content-type="code">B6140</compound-kwd-part>
<compound-kwd-part content-type="text">Signal processing and detection</compound-kwd-part>
</compound-kwd>
<compound-kwd>
<compound-kwd-part content-type="code">B6320</compound-kwd-part>
<compound-kwd-part content-type="text">Radar equipment, systems 
and applications</compound-kwd-part>
</compound-kwd>
</kwd-group>
</article-meta>
...

Example 5

App Navigation Information:
...
<sec>
<sec-meta>
<kwd-group specific-use="mobile-nav">
  <nested-kwd>
    <kwd>dosing</kwd>
    <nested-kwd>
      <kwd>geriatric</kwd>
      <nested-kwd>
        <kwd>Digoxin</kwd>
      </nested-kwd>
    </nested-kwd>
  </nested-kwd>
</kwd-group>
  
<kwd-group specific-use="mobile-nav">
  <nested-kwd>
    <kwd>Digoxin</kwd>
    <nested-kwd>
      <kwd>dosing</kwd>
      <nested-kwd>
        <kwd>geriatric</kwd>
      </nested-kwd>
    </nested-kwd>
  </nested-kwd>
</kwd-group>
</sec-meta>
<title>Dosing Table, Geriatric</title>
...
</sec>
...