<persona>

<persona> provides information about one of the personalities identified for a given individual, where an individual has multiple personalities. [13.3.2 The Person Element]
組件 namesdates — Names, Dates, People, and Places
屬性
role⚓︎ 說明該人物的主要角色或分類。
狀態 非必備的
資料類型 1–∞ 次可出現: teidata.enumerated 以空白鍵隔開
sex⚓︎ 指出該人物的性別。
狀態 非必備的
資料類型 1–∞ 次可出現: teidata.sex 以空白鍵隔開
gender⚓︎ specifies the gender of the persona.
狀態 非必備的
資料類型 1–∞ 次可出現: teidata.gender 以空白鍵隔開
age⚓︎ 指出該人物所屬的年齡層。
狀態 非必備的
資料類型 teidata.enumerated
俱乐部会员
可包含在於
可包含

Note that a persona is not the same as a role. A role may be assumed by different people on different occasions, whereas a persona is unique to a particular person, even though it may resemble others. Similarly, when an actor takes on or enacts the role of a historical person, they do not thereby acquire a new persona.

例子
<person sex="Mage="adult">
 <persona sex="M">
  <persName>Dr Henry Jekyll</persName>
 </persona>
 <persona sex="Mage="youth">
  <persName>Edward Hyde</persName>
 </persona>
</person>
Content model
<content>
 <alternate>
  <classRef key="model.pLikeminOccurs="1"
   maxOccurs="unbounded"/>

  <alternate minOccurs="0"
   maxOccurs="unbounded">

   <classRef key="model.personPart"/>
   <classRef key="model.global"/>
  </alternate>
 </alternate>
</content>
宣告
<rng:element name="persona">
 <rng:ref name="att.global.attributes"/>
 <rng:ref name="att.global.rendition.attributes"/>
 <rng:ref name="att.global.linking.attributes"/>
 <rng:ref name="att.global.analytic.attributes"/>
 <rng:ref name="att.global.facs.attributes"/>
 <rng:ref name="att.global.change.attributes"/>
 <rng:ref name="att.global.responsibility.attributes"/>
 <rng:ref name="att.global.source.attributes"/>
 <rng:ref name="att.editLike.attributes"/>
 <rng:ref name="att.sortable.attributes"/>
 <rng:optional>
  <rng:attribute name="role">
   <rng:list>
    <rng:oneOrMore>
     <rng:ref name="teidata.enumerated"/>
    </rng:oneOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="sex">
   <rng:list>
    <rng:oneOrMore>
     <rng:ref name="teidata.sex"/>
    </rng:oneOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="gender">
   <rng:list>
    <rng:oneOrMore>
     <rng:ref name="teidata.gender"/>
    </rng:oneOrMore>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="age">
   <rng:ref name="teidata.enumerated"/>
  </rng:attribute>
 </rng:optional>
 <rng:choice>
  <rng:oneOrMore>
   <rng:ref name="model.pLike"/>
  </rng:oneOrMore>
  <rng:zeroOrMore>
   <rng:choice>
    <rng:ref name="model.personPart"/>
    <rng:ref name="model.global"/>
   </rng:choice>
  </rng:zeroOrMore>
 </rng:choice>
</rng:element>
element persona
{
   att.global.attributes,
   att.global.rendition.attributes,
   att.global.linking.attributes,
   att.global.analytic.attributes,
   att.global.facs.attributes,
   att.global.change.attributes,
   att.global.responsibility.attributes,
   att.global.source.attributes,
   att.editLike.attributes,
   att.sortable.attributes,
   attribute role { list { teidata.enumerated+ } }?,
   attribute sex { list { teidata.sex+ } }?,
   attribute gender { list { teidata.gender+ } }?,
   attribute age { teidata.enumerated }?,
   ( model.pLike+ | ( model.personPart | model.global )* )
}