<particDesc>

<particDesc> (참여 기술) 언어적 상호작용에서 식별가능한 화자, 음성, 또는 기타 참여자를 기술한다. [15.2 Contextual Information]
모듈 corpus — Language Corpora
속성
클럽 회원
에 의해 포함된
header: profileDesc
포함할 수 있다
core: p
linking: ab
주석

May contain a prose description organized as paragraphs, or a structured list of persons and person groups, with an optional formal specification of any relationships amongst them.

<particDesc>
 <listPerson>
  <person xml:id="P-1234sex="2age="mid">
   <p>Female informant, well-educated, born in
       Shropshire UK, 12 Jan 1950, of unknown occupation. Speaks French fluently.
       Socio-Economic status B2.</p>
  </person>
  <person xml:id="P-4332sex="1">
   <persName>
    <surname>Hancock</surname>
    <forename>Antony</forename>
    <forename>Aloysius</forename>
    <forename>St John</forename>
   </persName>
   <residence notAfter="1959">
    <address>
     <street>Railway Cuttings</street>
     <settlement>East Cheam</settlement>
    </address>
   </residence>
   <occupation>comedian</occupation>
  </person>
  <listRelation>
   <relation type="personalname="spouse"
    mutual="#P-1234 #P-4332"/>

  </listRelation>
 </listPerson>
</particDesc>

This example shows both a very simple person description, and a very detailed one, using some of the more specialized elements from the module for Names and Dates.

Content model
<content>
 <alternate>
  <classRef key="model.pLikeminOccurs="1"
   maxOccurs="unbounded"/>

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

   <classRef key="model.personLike"/>
   <elementRef key="listPerson"/>
   <elementRef key="listOrg"/>
  </alternate>
 </alternate>
</content>
선언
<rng:element name="particDesc">
 <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.declarable.attributes"/>
 <rng:choice>
  <rng:oneOrMore>
   <rng:ref name="model.pLike"/>
  </rng:oneOrMore>
  <rng:oneOrMore>
   <rng:choice>
    <rng:ref name="model.personLike"/>
    <rng:ref name="listPerson"/>
    <rng:ref name="listOrg"/>
   </rng:choice>
  </rng:oneOrMore>
 </rng:choice>
</rng:element>
element particDesc
{
   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.declarable.attributes,
   ( model.pLike+ | ( model.personLike | listPerson | listOrg )+ )
}