<compound-kwd>

Compound Keyword (複合キーワード)

マルチパート・キーワード (例えばコードとその意味) のラッパー要素。

備考

いくつかのキーワードは単純な単語またはフレーズです。そのようなキーワードは一般的に <kwd> 要素を使用してタグ付けします。<compound-kwd> 要素は、キーワードが複数の部分で構成される場合に使用されます。たとえば:
  • コードとその意味
  • 略語とその拡張
複合キーワードの処理の詳細については、「tagging practices section」の Complex/Compound/Nested Keywords を参照してください。

関連要素

このタグセットには、いくつかの構造化されたタイプのキーワードが含まれています。
  • 要素 <kwd> は、単純なキーワード、つまり単語またはフレーズで使用されます。
  • 要素 <compound-kwd> は、複数の部分からなるキーワード (たとえば、コードと用語のペア) で使用されます。
  • 要素 <nested-kwd> 要素は、タクソノミなどの階層的なキーワード構造のためにあり、タクソノミの階層構造の一部を記録するために使用されます単純キーワードと複合キーワードの両方を階層的にネストすることができます。

コンテンツ・モデル

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

拡張コンテンツ・モデル

(compound-kwd-part+)

この要素は以下の要素内に含むことができます:

用例 1

コードのキーワードとその拡張形:
...
<article-meta>...  
<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>
...
...
<article-meta>...
<abstract>...</abstract>
<kwd-group kwd-group-type="author">
<compound-kwd content-type="ISO-639-1">
<compound-kwd-part content-type="ISO-639-1-code">de</compound-kwd-part>
<compound-kwd-part content-type="ISO-639-1-language">German</compound-kwd-part>
</compound-kwd>
<compound-kwd content-type="ISO-639-1">
<compound-kwd-part content-type="ISO-639-1-code">en</compound-kwd-part>
<compound-kwd-part content-type="ISO-639-1-language">English</compound-kwd-part>
</compound-kwd>
<compound-kwd content-type="ISO-639-1">
<compound-kwd-part content-type="ISO-639-1-code">fr</compound-kwd-part>
<compound-kwd-part content-type="ISO-639-1-language">French</compound-kwd-part>
</compound-kwd>
...</kwd-group>
</article-meta>
...
... 
<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>
...

用例 2

略語のキーワードとその拡張形:
...
<article-meta>...
<abstract>...</abstract>
<kwd-group kwd-group-type="author">
<compound-kwd>
<compound-kwd-part content-type="abbrev">AODM</compound-kwd-part>
<compound-kwd-part content-type="expansion">adult onset diabetes mellitus</compound-kwd-part>
</compound-kwd>
<compound-kwd>
<compound-kwd-part content-type="abbrev">DI</compound-kwd-part>
<compound-kwd-part content-type="expansion">diabetes insipidus</compound-kwd-part>
</compound-kwd>
<compound-kwd>
<compound-kwd-part content-type="abbrev">DKA</compound-kwd-part>
<compound-kwd-part content-type="expansion">diabetic ketoacidosis</compound-kwd-part>
</compound-kwd>
...</kwd-group>
</article-meta>
...

用例 3

コードのキーワード (と日本語の拡張形):
...
<article-meta>...
<kwd-group xml:lang="ja">
<compound-kwd>
<compound-kwd-part content-type="code">321</compound-kwd-part>
<compound-kwd-part content-type="text">加温空気</compound-kwd-part>
</compound-kwd>
</kwd-group>
</article-meta>
...