The <collection-meta>-element is used to specify the series information of a title that is published in a book-series. In general, this information is printed on page ii of the printed version. The following table gives an overview of the elements that are used to specify this information in the XML. Next an example is given. See the BITS 2.0 tag library for a full description of elements and attributes.
element | attribute(s) | required | description |
---|
| collection-type | YES | attribute value: "series" or "sub-series". In case of "sub-series", two <collection-meta>-elements are used to specify the information on the series and on the sub-series level. |
| @collection-id-type | YES | An Brill identifier, that your Brill Desk Editor will supply. @collection-id-type="publisher" required. |
|
| YES | title and - if applicable - subtitle of the series. In case of a translated title, a <trans-title-goup> is added within the <title-group> element with |
the the ] <title> <subtitle> <contrib>
|
| contrib-type deceased equal-contrib | YES NO NO | Values for the |
contrib attribute are: "series editor" (default, unless specifically identified as one of the other types on the page/by the Brill Desk Editor),"editor-in-chief", "founding editor", "managing editor", "associate editor", "technical editor", "editorial board/council member", "advisory editor", "copy editor", "translator" |
The deceased-attribute @deceased="yes" is added in case the contributor is deceased. |
the equal attribute can be added in case the contributor whom this attribute modifies contributed equally with all other contributors. |
It is an optional attribute <collab> | A group of authors, but referred to only as a group, for example a consortium or an institute, like the UN. If <collab> is used, <name> is not required. |
| name-style xml:lang | YES NO | The name of the contributor is specified with a combination of the elements <surname>, <given-names>, <prefix> and <suffix>. |
The name-attribute has the values - "eastern" (The name will both be displayed and sorted/inverted with the family name preceding the given name),
- "western" (Default, the name will be displayed with the given name preceding the family name, but will be sorted/inverted with the family name preceding the given name),
|
or - "given-only": The single name provided is a given name, not a family name/surname. The single name will be both the sort and the display name. If an author has only a single name, name-style="eastern" and tag the single name with <surname>.
|
|
| NO | In case of an alternative name or names in a different language or script, a <name-alternatives>-group can be included, containing again |
a <name>-element(s) (see above) and/or |
a <string-name>-element(s) for each alternative name. In such a case, the |
xml attribute is added to specify the language of the alternative name. |
| contrib-id-type authenticated |
YESNO NO | <contrib-id> is only required in case an ORCID-number is available: |
contrib@contrib-id-type="orcid". Use |
authenticated only in case the ORCID number is indeed authenticated. Editorial Manager does this by default. |
irdrid |
| A cross-reference for each contributor to an affiliation, specified in the next section |
. ref, @ref-type="aff". Default format of the |
rid-attribute @rid is "AFFnnnnnn": AFF + a 6-digit sequential numbering, starting with "000001" |
<aff> | id | NO | information for each <xref>-element in the <contrib>-elements. |
Value of the id-attribute The value of @id is equal to the value of |
the rid-attribute @rid used in the <xref>-elements above. |
<institution>
|
|
|
| content-type | YES | Name of an institution or organization, like Universiteit Leiden or Universiteit van Amsterdam. This information is provided by Brill, but it must be checked. This element can also contain the name of the department, like Leiden University Centre for Linguistics. Provide this value with a @content-type="dept". |
<institution | institution-id-type | NO | Brill only supports Ringgold identifiers: |
institution@institution-id-type="ringgold" |
|
| NO | The country the institution is located in. |
|
| YES |
|
|
| YES |
|
| publication-format | YES | publication-format="print" is required. If available, a second <issn>-element should be added with publication-format="online" |
Code Block |
---|
language | xml |
---|
title | Example Series information |
---|
|
<collection-meta collection-type="series">
<collection-id collection-id-type="publisher">VKI</collection-id>
<title-group>
<title>Verhandelingen van het Koninklijk Instituut voor Taal-, Land- en Volkenkunde</title>
</title-group>
<contrib-group>
<contrib contrib-type="series-editor">
<name><surname>Hoefte</surname> <given-names>Rosemarijn</given-names></name>
<xref ref-type="aff" rid="AFF000001"/>
<contrib-id contrib-id-type="orcid">https://orcid.org/0000-0003-4103-8577</contrib-id>
</contrib>
<contrib contrib-type="series-editor">
<name><surname>Nordholt</surname> <given-names>Henk Schulte</given-names></name>
<xref ref-type="aff" rid="AFF000001"/>
</contrib>
<contrib contrib-type="series-editor">
<name name-style="western">
<surname>Chen (陈颀)</surname>
<given-names>Qi</given-names>
</name>
<name-alternatives>
<name name-style="western">
<surname>Chen</surname>
<given-names>Qi</given-names>
</name>
<string-name name-style="eastern" xml:lang="zh">陈颀</string-name>
</name-alternatives>
</contrib>
<aff id="AFF000001">
<institution-wrap>
<institution>Universiteit Leiden</institution>
<institution content-type="dept">KITLV</institution>
<institution-id institution-id-type="ringgold">84812</institution-id>
</institution-wrap>
<country>The Netherlands</country>
</aff>
</contrib-group>
<volume-in-collection><volume-number>313</volume-number></volume-in-collection>
<issn publication-format="print">1572-1892</issn>
</collection-meta>
|
...