Container element to hold two or more representations of a single affiliation (for example, the name of a university in two or more languages such as both German and English).
Best Practice: When it is present, this container element should take the @id that is used to tie contributors to affiliations rather than putting an @id on the individual affiliations (<aff>s) within the container.
Usage: The <aff-alternatives> element is intended to collect multiple versions of a single affiliation without appearing to multiply the number of affiliations. (Three versions of the name of a university is not the same as three different universities.) Like the similar construction for graphics <alternatives>, it will be up to an application how multiple versions of a single affiliation are to be processed. The @xml:lang attributes can be used to distinguish the different affiliations for separate processing.
The <aff-alternatives> element can be used to record:
<!ELEMENT aff-alternatives %aff-alternatives-model; >
(aff+)
<aff> Affiliation, one or more
<book-meta>, <book-part-meta>, <collab>, <collection-meta>, <contrib>, <contrib-group>, <person-group>, <sig-block>
An affiliation name in Japanese and English:
...
<book-meta>
...
<contrib-group>
<contrib contrib-type="author">
<name-alternatives>
<name name-style="eastern" xml:lang="ja-Jpan">
<surname>園田</surname>
<given-names>直子</given-names>
</name>
<name name-style="western" xml:lang="en">
<surname>Sonoda</surname>
<given-names>Naoko</given-names>
</name>
<name name-style="eastern" xml:lang="ja-Kana">
<surname>ソノダ</surname>
<given-names>ナオコ</given-names>
</name>
</name-alternatives>
<xref ref-type="aff" rid="aff2">**</xref>
</contrib>
</contrib-group>
<aff-alternatives id="aff2">
<aff id="aff-ja">
<institution xml:lang="ja-Jpan">国立民族学博物館博物館民族学研究部</institution>
</aff>
<aff id="aff-en">
<institution xml:lang="en">Department of Museum Anthropology,
National Museum of Ethnology</institution>
</aff>
</aff-alternatives>
...
</book-meta>
...