<kwd> Keyword

A keyword is a finding aid used to record one subject term, key phrase, abbreviation, indexing word, taxonomic structure, or other expression that is associated with a whole structure (such as an article). Keywords can be used for identification, searching, and indexing purposes. A keyword element (<kwd>) may contain a repetition of words found in the structure, or it may contain broader terms, narrower terms, related terms, or taxonomic identifiers used to find the structure in a search or provide semantic classification of the text by mapping a specific structure to a taxonomy.

Usage/Remarks

Keywords are contained in <kwd-group>s. A document may take multiple sets of keywords, with attributes such as @kwd-group-type, @specific-use, @xml:lang, or @vocab used to discriminate between the sets.
The <kwd> element may not take the @xml:lang attribute; that is reserved for the <kwd-group>. This means that keywords must be separated by language and placed into language groups.

Attribute Best Practice

If the content of the <kwd> element is a term from a controlled vocabulary (ontology, taxonomy, term-list, vocabulary, industry glossary, or other known source), the vocabulary identification attributes should be used to identify that source. The vocabulary term identification attributes may also be used, unless the vocabulary has already been named on the <kwd-group>.
Vocabulary Term Identification Attributes
Two attributes are used in this Tag Set to identify an individual term from a vocabulary (controlled or an uncontrolled):
vocab-term
The content of the element is the display version of the vocabulary or taxonomic term. The @vocab-term attribute holds the canonical version of the same term, as it appears in the vocabulary. For example, if the element display text content is “Digitized Version of Record” the attribute value might be “digitized-vor
vocab-term-identifier
Unique identifier of the term within a specific vocabulary, such as (but not limited to) an item number, a URI, DOI, etc.
Vocabulary Identification Attributes
Two attributes are used in this Tag Set to identify a vocabulary. If these attributes have already been used on <kwd-group>, they need not be repeated on each <kwd>.
vocab
Name of the controlled or uncontrolled vocabulary, taxonomy, ontology, index, database, or similar that is the source of the term. For example, for a subject term, a value might be the IPC Codes (“ipc”) or MESH headings (“mesh”). For an uncontrolled term, the value might be an area of study such as “medical-devices” or merely the word “uncontrolled”.
vocab-identifier
Unique identifier of the vocabulary, such as (but not limited to) a URI or DOI. For example, for Dublin Core (DCC), the identifier may be “http://dublincore.org/documents/2012/06/14/dces/”.
Related Elements
This Tag Set contains several differently-structured types of keywords:
  • The element <kwd> is used with simple keywords: words or phrases.
  • The element <compound-kwd> is used with multi-part keywords, such as a keyword that is a code-and-term pair.
  • The element <nested-kwd> is used with hierarchical keywords structures, such as taxonomies, to record a portion of a taxonomic hierarchy. Both simple and compound keywords can be nested hierarchically.
Attributes

Base Attributes

Models and Context
May be contained in
Description
Content Model
<!ELEMENT  kwd          (#PCDATA %kwd-elements;)*                    >
Expanded Content Model

(#PCDATA | bold | fixed-case | italic | monospace | overline | roman | sans-serif | sc | strike | underline | ruby | abbrev | index-term | index-term-range-end | named-content | styled-content | sub | sup)*

Tagged Samples
Author’s keywords
<article dtd-version="1.3">
 <front>
  <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>
 </front>
 ...
</article>
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>
...
With vocabulary attributes
...
<kwd-group kwd-group-type="physh" xml:lang="en"
  vocab="PhySH" vocab-identifier="https://physh.org/">
 <nested-kwd>
  <kwd content-type="facet" 
    vocab="PhySH" vocab-identifier="https://physh.org/" 
    vocab-term-identifier="https://physh.aps.org/browse?facetIds=Research%2520Areas"
   >Research Areas</kwd>
  <nested-kwd>
   <kwd content-type="concept" 
     vocab="PhySH" vocab-identifier="https://physh.org/"
     vocab-term-identifier="https://doi.org/10.29172/ba7ccb8ed7eb4e6f9c1eb622f5b4e242"
    >Atomic &amp; molecular processes in external fields</kwd>
   <nested-kwd>
    <kwd content-type="concept" 
      vocab="PhySH" vocab-identifier="https://physh.org/"
      vocab-term-identifier="https://doi.org/10.29172/da893accf204480b8a7e386479c50687"
     >Coherent control</kwd>
   </nested-kwd>
  </nested-kwd>
 </nested-kwd>
 <nested-kwd>
  <kwd content-type="facet" 
    vocab="PhySH" vocab-identifier="https://physh.org/"
    vocab-term-identifier="https://physh.aps.org/browse?facetIds=Physical%2520Systems"
   >Physical Systems</kwd>
  <nested-kwd>
   <kwd content-type="concept" 
     vocab="PhySH" vocab-identifier="https://physh.org/"
     vocab-term-identifier="https://doi.org/10.29172/bd252d88a60848979416daf84dee7f6b"
    >Atomic Systems</kwd>
   <nested-kwd>
    <kwd content-type="concept" 
      vocab="PhySH" vocab-identifier="https://physh.org/"
      vocab-term-identifier="https://doi.org/10.29172/42e66168abfd4328aa9df6fc3a077f75"
     >Molecules</kwd>
   </nested-kwd>
  </nested-kwd>
 </nested-kwd>
</kwd-group>
...
Related Resources