<institution-wrap>

Institution Wrapper (機関情報ラッパー)

機関名 (<institution>) とその機関の識別子 (<institution-id>)、たとえば INSI や Ringgold ID の両方を保持するコンテナ要素。

備考

よくある用法 複数の層からなる組織におけるどの階層も、単一の<institution> 要素内に記述され、単一の機関識別子が与えられることがあります。例えば、プログラム、部署、大学が同じ <institution> の中に記述され、単一の <institution-wrap> 内に置かれ、単一の <institution-id> を持つ場合があります。同様に、企業内の会社や部門が、いずれも同一の <institution> の中に記述され、単一の <institution-wrap> 内に置かれ、単一の (<institution-id>) を持つ場合があります。
<institution-wrap>
  <institution-id>Moo-U-41</institution-id>
  <institution content-type="edu">
  University of Frostbite Falls, Dept of Campus Security, 
  Dept of Moose and Squirrel Security, 
  Office of the Acting Dean</institution>
</institution-wrap>
あるいは、部署内の従属 “dept” や部署の中の “office” など部門別の区別は、複数の<institution> 要素を使って @content-type 属性を用いることにより、機関、部署、部課を区別することができます。これら各部署には機関識別子 (<institution-id>) をつけ、ラッパー要素 <institution-wrap> の中に置く必要があります。
...
<institution-wrap>
  <institution content-type="edu">
    University of Frostbite Falls</institution>
  <institution-id>Moo-U-41</institution-id>
</institution-wrap>
<institution-wrap>
  <institution content-type="dept">
    Dept of Campus Security</institution>
  <institution-id>dept-42s</institution-id>
</institution-wrap>
<institution-wrap>
  <institution content-type="dept">
    Dept of Moose and Squirrel Security</institution>
  <institution-id>rcky-n-bllw</institution-id>
</institution-wrap>
<institution-wrap>
  <institution content-type="office">
    Office of the Acting Dean</institution>
  <institution-id>4850ws</institution-id>
</institution-wrap>
...

属性

コンテンツ・モデル

<!ELEMENT  institution-wrap  
                        %institution-wrap-model;                     >

拡張コンテンツ・モデル

(institution | institution-id)*

記述方法

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

用例 1

記事メタデータの下の所属先の中に:
  ...
<article-meta>...  
<contrib-group>
<contrib contrib-type="author">
<name><surname>Gaillard</surname>
<given-names>T. D.</given-names></name>
<xref ref-type="aff" rid="aff1"/>
</contrib>
<contrib contrib-type="author">
<name><surname>Clark</surname>
<given-names>H. S.</given-names></name>
<xref ref-type="aff" rid="aff1"/>
</contrib>
</contrib-group>
<aff id="aff1">
<institution-wrap>
<institution-id institution-id-type="Ringgold">1812</institution-id>
<institution content-type="university">Harvard University</institution>
</institution-wrap>
</aff>
<author-notes>
<fn>
<p>Correspondence to: TD Gaillard <email>tgail@harvard.edu</email></p>
</fn>
</author-notes>
...</article-meta>
...  

用例 2

記事メタデータの下の資金提供グループの中に:
  ...
<funding-group>
<award-group>
<funding-source>
<institution-wrap>
<institution content-type="laboratory">Massachusetts Green High Performance 
Computing Center</institution>
</institution-wrap>, operated by 
  
<institution-wrap>
<institution-id institution-id-type="Ringgold">1846</institution-id>
<institution-id institution-id-type="ISNI">0000 0001 2170 1429</institution-id>
<institution content-type="university">Boston University</institution>
</institution-wrap>, 
      
<institution-wrap>
<institution-id institution-id-type="Ringgold">1812</institution-id>
<institution content-type="university">Harvard University</institution>
</institution-wrap>, 
      
<institution-wrap>
<institution-id institution-id-type="Ringgold">2167</institution-id>
<institution content-type="university">MIT</institution>
</institution-wrap>, 
      
<institution-wrap>
<institution-id institution-id-type="Ringgold">1848</institution-id>
<institution content-type="university">Northeastern University</institution>
</institution-wrap>, and the 
      
<institution-wrap>      
<institution-id institution-id-type="Ringgold">14707</institution-id>
<institution content-type="university">University of Massachusetts</institution>
</institution-wrap>
</funding-source>
</award-group>
</funding-group>
...