<listRelation>

<listRelation> provides information about relationships identified amongst people, places, and organizations, either informally as prose or as formally expressed relation links. [13.3.2.3. Personal Relationships]
Modulenamesdates
Attributes
Member of
Contained by
May contain
core: desc head p
linking: ab
Note

May contain a prose description organized as paragraphs, or a sequence of relation elements.

Example
<listPerson>
 <person xml:id="pp1">
<!-- data about person pp1 -->
 </person>
 <person xml:id="pp2">
<!-- data about person pp1 -->
 </person>
<!-- more person (pp3, pp4) elements here -->
 <listRelation type="personal">
  <relation name="parent"
   active="#pp1 #pp2passive="#pp3 #pp4"/>

  <relation name="spouse"
   mutual="#pp1 #pp2"/>

 </listRelation>
 <listRelation type="social">
  <relation name="employeractive="#pp1"
   passive="#pp3 #pp5 #pp6 #pp7"/>

 </listRelation>
</listPerson>

The persons with identifiers pp1 and pp2 are the parents of pp3 and pp4; they are also married to each other; pp1 is the employer of pp3, pp5, pp6, and pp7.

Example
<listPerson>
 <person xml:id="en_pp1">
<!-- data about person en_pp1 -->
 </person>
 <person xml:id="en_pp2">
<!-- data about person en_pp2 -->
 </person>
<!-- more person (en_pp3, en_pp4) elements here -->
</listPerson>
<listPlace>
 <place xml:id="en_pl1">
<!-- data about place en_pl1 -->
 </place>
<!-- more place (en_pl2, en_pl3) elements here -->
</listPlace>
<listRelation>
 <relation name="residence"
  active="#en_pp1 #en_pp2passive="#en_pl1"/>

</listRelation>

The persons with identifiers en_pp1 and en_pp2 live in en_pl1.

Example
<listRelation>
 <p>All speakers are members of the Ceruli family, born in Naples.</p>
</listRelation>
Content model
<content>
 <sequence>
  <classRef key="model.headLike"
   minOccurs="0maxOccurs="unbounded"/>

  <elementRef key="descminOccurs="0"
   maxOccurs="unbounded"/>

  <alternate minOccurs="1maxOccurs="1">
   <classRef key="model.pLike"/>
   <alternate minOccurs="1"
    maxOccurs="unbounded">

    <elementRef key="relation"
     minOccurs="1maxOccurs="1"/>

    <elementRef key="listRelation"
     minOccurs="1maxOccurs="1"/>

   </alternate>
  </alternate>
 </sequence>
</content>
Schema Declaration
element listRelation
{
   tei_att.global.attributes,
   tei_att.typed.attributes,
   tei_att.sortable.attributes,
   (
      tei_model.headLike*,
      tei_desc*,
      ( tei_model.pLike | ( tei_relation | tei_listRelation )+ )
   )
}