<contrib-group>

Contributor Group

Container element for one or more contributors and information about those contributors.

Remarks

Inside the element <article-meta>, the <contrib-group> element groups individual contributors to a document such as authors, researchers, or photographers.
Contributor groups may name primary authors, editors, sponsors, translators, illustrators, etc. The members of the group are contributors who worked individually, not as a group. The @content-type attribute should be used to name the type of contributor, “authors”, “editors”, “translators”, etc.

Related Elements

The element <contrib-group> is a metadata element. The <person-group> element performs a similar function of grouping individual contributors, such as authors and editors, within a bibliographic reference (<element-citation> or <mixed-citation>).
The <contrib-group> should not be confused with the element <collab>, in which individuals are not named as contributors because the contribution was made by the group as a whole, for example, a report which has a laboratory or department as the official author.

Attributes

Content Model

<!ELEMENT  contrib-group
                        %contrib-group-model;                        >

Expanded Content Model

(contrib+)

Description

<contrib> Contributor, one or more

This element may be contained in:

Example 1

A <contrib-group> element with a single author:
...
<contrib-group>
<contrib contrib-type="author">
<name name-style="western">
<surname>Foster</surname>
<given-names>Bill</given-names>
<prefix>Rep.</prefix>
</name>
<role>(IL-14)</role>
</contrib>
</contrib-group>
...

Example 2

A <contrib-group> element with a single author and his affiliation:
...
<contrib-group>
<contrib contrib-type="author">
<name name-style="western">
<surname>Nüsslin</surname>
<given-names>Fridtjof</given-names>
<prefix>Dr.</prefix>
</name>
<aff>Klinik für Strahlentherapie und Radiologische Onkologie,
<institution>Technische Universität München</institution>, 
Munich, Germany (Tel: 49-89-41404517, E-mail:
<ext-link ext-link-type="email" xlink:href="mailto:nuesslin@lrz.tum.de">
nuesslin@lrz.tum.de</ext-link>)</aff>
</contrib>
</contrib-group>
...

Example 3

A <contrib-group> element with a single editor:
...  
<contrib-group content-type="conference-editors">
<contrib contrib-type="editor">
<name name-style="western">
<surname>Herrera</surname>
<given-names>Gerardo</given-names>
</name>
<role>Conference Editor</role>
</contrib>
</contrib-group>
...

Example 4

A <contrib-group> element with several authors:
...
<article-meta>
<title-group>
<article-title>Systematic review of day hospital
care for elderly people</article-title>
</title-group>
<contrib-group>
<contrib contrib-type="author">
<name><surname>Forster</surname>
<given-names>Anne Williams</given-names></name>
<role>research physiotherapist</role>
<aff>Department of Health Care for the Elderly, 
St Luke&#x2019;s Hospital, Bradford BD5 0NA</aff>
</contrib>
<contrib contrib-type="author">
<name><surname>Young</surname>
<given-names>John</given-names></name>
<role>consultant physician</role>
<aff>Department of Health Care for the Elderly, 
St Luke&#x2019;s Hospital, Bradford BD5 0NA</aff>
</contrib>
<contrib contrib-type="author">
<name><surname>Langhorne</surname>
<given-names>Peter</given-names></name>
<role>senior lecturer</role>
<aff>Academic Section of Geriatric Medicine, Royal 
Infirmary, Glasgow G4 0SF</aff>
<author-comment>
<p>on behalf of the Day Hospital Group</p>
</author-comment>
</contrib>
</contrib-group>
...</article-meta>
...

Example 5

Three contributors with alternative names:
...
<contrib-group>
<contrib contrib-type="author">  
<name-alternatives>
<name name-style="western"><surname>Zhang</surname>
<given-names>Y. P.</given-names></name>
<string-name name-style="eastern" xml:lang="zh">张轶泼</string-name>
</name-alternatives>
</contrib>
  
<contrib contrib-type="author">
<name-alternatives>
<name name-style="western"><surname>Isobe</surname>
<given-names>M.</given-names></name>
<string-name name-style="eastern" xml:lang="zh">磯部光孝</string-name>
</name-alternatives>
</contrib>
  
<contrib contrib-type="author">
<name-alternatives>
<name name-style="western"><surname>Liu</surname>
<given-names>Yi</given-names></name>
<string-name name-style="eastern" xml:lang="zh">刘仪</string-name>
</name-alternatives>
</contrib>
</contrib-group>
...