◇◆
<name> Name of Person (Structured)
Container element for the component elements of personal names, such as a <surname>.
Usage/Remarks
Best Practice
If the name parts are unknown or untagged, the whole name can be placed:
- Within the <string-name> element in contexts where <string-name> is allowed, for example, “<string-name>Ice Cube</string-name>”; or
- Within the element <surname> in contexts where only <name> is allowed, for example, “<surname>Ice Cube</surname>”.
Attributes
Models and Context
May be contained in
Description
The following, in order:
- Any one of:
- The following, in order:
- <surname> Surname
- <given-names> Given (First) Names, zero or one
- <given-names> Given (First) Names
- The following, in order:
- <prefix> Prefix (in a name), zero or one
- <suffix> Suffix (in a name), zero or one
Content Model
<!ELEMENT name ( ( (surname, given-names?) | given-names), prefix?, suffix?) >
Expanded Content Model
(((surname, given-names?) | given-names), prefix?, suffix?)
Tagged Sample
Authors named in a citation
... <ref> <label>...</label> <element-citation publication-type="journal"> <person-group><name> <surname>Chandler</surname> <given-names>Adam</given-names> </name> <name> <surname>Wiley</surname> <given-names>Glen</given-names> </name> <name> <surname>LeBlanc</surname> <given-names>Jim</given-names> </name></person-group> <article-title>Towards Transparent and Scalable OpenURL Quality Metrics</article-title> <source>D-Lib Magazine</source> <date iso-8601-date="2011-03"> <month>March/April</month> <year>2011</year> </date> <volume>17</volume> <issue>3/4</issue> <pub-id pub-id-type="doi" xlink:href="http://dx.doi.org/10.1045/march2011-chandler" >http://dx.doi.org/10.1045/march2011-chandler</pub-id> <comment>Available at: </comment> <ext-link xlink:href="http://dlib.org/dlib/march11/chandler/03chandler.html" >http://dlib.org/dlib/march11/chandler/03chandler.html</ext-link> </element-citation> </ref> ...