<institution-wrap>
Institution Wrapper
A wrapper element to hold both the name of an institution (<institution>) and any identifiers for that institution (<institution-id>), for example, an INSI or Ringgold ID.
Remarks
Common Practice: All levels of a multi-tier
organization may be listed within a single
<institution> element and
given a single institution identifier. For example, a program, a
department, and a university may be part of the same
<institution>, inside a single
<institution-wrap> with a single
<institution-id>. Similarly both a corporation and a
division within the corporation might be inside one <institution> element, inside a <institution-wrap> with a single institution
identifier (<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>
Alternatively, a divisional distinction such as an
“organization” element with a subordinate “dept” and an “office”
inside a department could tagged using multiple
<institution> elements with the
@content-type attribute differentiating institution, department, and
office. Each of these divisions could be assigned an institutional identifier
(<institution-id>), which would require the wrapper element
<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> ...
Content Model
<!ELEMENT institution-wrap %institution-wrap-model; >
Expanded Content Model
(institution | institution-id)*
Description
Any combination of:
This element may be contained in:
<address>, <addr-line>, <aff>, <collab>, <conf-loc>, <conf-sponsor>, <copyright-holder>, <corresp>, <element-citation>, <funding-source>, <mixed-citation>, <on-behalf-of>, <principal-award-recipient>, <product>, <publisher-loc>, <publisher-name>, <related-article>, <related-object>, <std-organization>
Example 1
In article metadata, inside an affiliation:
...
<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>
...
Example 2
In article metadata, inside a funding group:
... <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> ...