<compound-kwd-part>

Compound Keyword Part (複合キーワード部分)

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

備考

いくつかのキーワードは単純な単語またはフレーズです。そのようなキーワードは一般的に <kwd> 要素を使用してタグ付けします。<compound-kwd> 要素は、キーワードが複数の部分で構成される場合に使用されます。たとえば:
  • コードとその意味
  • 略語とその拡張
複合キーワードの処理の詳細については、「tagging practices section」の Complex/Compound/Nested Keywords を参照してください。
@content-type 属性をそれぞれの <compound-kwd-part> の役割を示すために使用することを推奨します。上記の例でいえば、この属性の値は codetextabbrevexpansion などが考えられます。

関連要素

1 つの <compound-kwd-part> 要素は、<compound-kwd> 内に含まれる複合キーワードの各構成部分をマークするために使用されます。

属性

コンテンツ・モデル

<!ELEMENT  compound-kwd-part
                        (#PCDATA %compound-kwd-part-elements;)*      >

拡張コンテンツ・モデル

(#PCDATA | bold | fixed-case | italic | monospace | overline | roman | sans-serif | sc | strike | underline | ruby | alternatives | inline-graphic | private-char | chem-struct | inline-formula | named-content | styled-content | fn | target | xref | sub | sup)*

記述方法

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

用例 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>
...