<name-alternatives>
Name Alternatives
Container element for more than one version of a personal
name, the element <name> (for
example, the name written in both Japanese Kana characters and the
Latin alphabet).
Remarks
The <name-alternatives> element is intended to collect multiple versions of a single name without appearing to multiply the number of names. (Three versions of a name is not the same as three different contributors.) Like the similar construction for graphics <alternatives>, it will be up to an application how multiple versions of a single name are to be processed. The @specific-use, @content-type, and @xml:lang attributes can be used to distinguish the cases for separate processing.
The <name-alternatives> element can be used to record:
- A name in multiple languages (For example, a name in Korean or Chinese-Han characters and a transliterated version of the same name in the Latin alphabet)
- A name in multiple language/script combinations (For example, a name in Japanese [xml:lang="ja-Jpan" for Han + Hiragana + Katakana] and the same name written in Kanji [xml:lang="ja-Hani"]).
Content Model
<!ELEMENT name-alternatives %name-alternatives-model; >
Expanded Content Model
((name | string-name)+)
Description
Any one of:
- One or more of any of:
This element may be contained in:
Example 1
A name given in two forms:
...
<name-alternatives>
<name name-style="western"><surname>Chu</surname>
<given-names>J. H.</given-names></name>
<string-name name-style="eastern" xml:lang="zh">褚君浩</string-name>
</name-alternatives>
...
Example 2
In article metadata, to provide 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> ...
Example 3
The name of a contributor given in two languages (one given in two scripts):
...
<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>Nakanishi</surname>
<given-names>Hidehiko</given-names>
</name>
<name name-style="eastern" xml:lang="ja-Kana">
<surname>ナカニシ</surname>
<given-names>ヒデヒコ</given-names>
</name>
</name-alternatives>
</contrib>
</contrib-group>
...