<person>

<person> (person) 提供一個已知人物的相關資料,例如語言互動中的參與者、或是歷史來源中提及的人物。 [13.3.2 The Person Element 15.2.2 The Participant Description]
組件 namesdates — Names, Dates, People, and Places
屬性
role⚓︎ 說明該人物的主要角色或分類。
狀態 非必備的
資料類型 1–∞ 次可出現: teidata.enumerated 以空白鍵隔開
sex⚓︎ 指出該人物的性別。
狀態 非必備的
資料類型 1–∞ 次可出現: teidata.sex 以空白鍵隔開
gender⚓︎ specifies the gender of the person.
狀態 非必備的
資料類型 1–∞ 次可出現: teidata.gender 以空白鍵隔開
age⚓︎ 指出該人物所屬的年齡層。
狀態 非必備的
資料類型 teidata.enumerated
俱乐部会员
可包含在於
corpus: particDesc
namesdates: event listPerson org
可包含

May contain either a prose description organized as paragraphs, or a sequence of more specific demographic elements drawn from the model.personPart class.

例子
<person sex="Fage="adult">
 <p>女性被告。1950年1月12日生於西藏,受過良好教育,職業不明。能說流利漢語,中產階級。</p>
</person>
例子
<person xml:id="zh-tw_Ovi01sex="M"
 role="poet">

 <persName xml:lang="en">Ovid</persName>
 <persName xml:lang="zh-TW">奧維德</persName>
 <birth when="-0044-03-20"> 西元前43年3月20日<placeName>
   <settlement type="city">Sulmona</settlement>
   <country key="IT">義大利</country>
  </placeName>
 </birth>
 <death notBefore="0017notAfter="0018">西元後17或18年<placeName>
   <settlement type="city">Tomis (Constanta)</settlement>
   <country key="RO">羅馬尼亞</country>
  </placeName>
 </death>
</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"/>
   <elementRef key="ptr"/>
  </alternate>
 </alternate>
</content>
宣告
<rng:element name="person">
 <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:ref name="ptr"/>
   </rng:choice>
  </rng:zeroOrMore>
 </rng:choice>
</rng:element>
element person
{
   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 | ptr )* )
}