<compound-subject>

Compound Subject Name

Wrapper element to hold all the parts of a multi-part subject (for example, a subject term and the code representing that term).

Attributes

content-type Type of Content
id Document Internal Identifier
xml:base Base

Related Elements

The <compound-subject> may be used if a subject has multiple parts, but need not be used unless both parts need to be captured:

Content Model

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

Expanded Content Model

(compound-subject-part+)

Description

<compound-subject-part> Compound Subject Part Name, one or more

This element may be contained in:

<subj-group>

Example 1

Coded subjects:

    
...
<book-part-meta>
<subj-group>
  <compound-subject>
    <compound-subject-part
     content-type="code">A1</compound-subject-part>
    <compound-subject-part
     content-type="text">Cellular and Molecular Biology
    </compound-subject-part>
  </compound-subject>
  <subj-group>
    <compound-subject>
      <compound-subject-part
       content-type="code">A11</compound-subject-part>
      <compound-subject-part
       content-type="text">Blood&ndash;brain
        barrier</compound-subject-part>
    </compound-subject>
    <subj-group>
      <compound-subject>
        <compound-subject-part
          content-type="code">A115</compound-subject-part>
        <compound-subject-part
          content-type="text">Permiability
        </compound-subject-part>
      </compound-subject>
    </subj-group>
  </subj-group>
</subj-group>
<title-group>...</title-group>
<contrib-group>...</contrib-group>
...
</book-part-meta>
...

   

Example 2

Using the type attribute to name the source and components:

    
...
<book-part-meta>
<subj-group subj-group-type="flesch-subject-headings">
  <compound-subject>
    <compound-subject-part
      content-type="flesch-code2">A2</compound-subject-part>
    <compound-subject-part
      content-type="flesch-short-form">Neurobiology
    </compound-subject-part>
  </compound-subject>
</subj-group>
<title-group>...</title-group>
<contrib-group>...</contrib-group>
...
</book-part-meta>
...