<listApp>

<listApp> (list of apparatus entries) contains a list of apparatus entries. [12.2 Linking the Apparatus to the Text]
Module textcrit — Critical Apparatus
Attributes
Member of
Contained by
May contain
core: desc head
textcrit: app listApp
Note

listApp elements would normally be located in the back part of a document, but they may appear elsewhere.

Example

In the following example from the exegetical Yasna, the base text is encoded in the body of the document, and two separate listApp elements are used in the back, containing variant readings written in different scripts.

<body>
 <div>
  <lg type="stanzaxml:id="Y-36.01"
   xml:lang="pal-Avstrend="italic">

   <l xml:id="Y-36.01_L-1">
    <w xml:id="Y-36.01_L1_W-01">ahiiā</w>
    <w xml:id="Y-36.01_L1_W-02">ϑβā</w>
    <w xml:id="Y-36.01_L1_W-03">āϑrō</w>
    <w xml:id="Y-36.01_L1_W-04">vərəzə̄nā</w>
    <w xml:id="Y-36.01_L1_W-05">paouruiiē</w>
    <w xml:id="Y-36.01_L1_W-06">pairijasāmaiδē</w>
    <w xml:id="Y-36.01_L1_W-07">mazdā</w>
    <w xml:id="Y-36.01_L1_W-08">ahurā</w>
   </l>
<!-- ... -->
  </lg>
 </div>
</body>
<!-- ... -->
<back>
 <div>
  <listApp xml:id="CA_Y-36"
   xml:lang="pal-Avst">

   <head>Variants from witnesses in Avestan script</head>
   <app from="#Y-36.01_L1_W-01">
    <rdg wit="#Pt4 #F2 #J2 #M1">ahiiā</rdg>
   </app>
   <app from="#Y-36.01_L1_W-02">
    <rdg wit="#Pt4 #F2 #J2 #M1">ϑβā</rdg>
   </app>
   <app from="#Y-36.01_L1_W-03">
    <rdg wit="#Pt4 #J2 #M1">āϑrō</rdg>
    <rdg wit="#F2">āϑrōi</rdg>
   </app>
<!-- ... -->
  </listApp>
  <listApp xml:id="CA_PY-36"
   xml:lang="pal-Phlv">

   <head>Variants from witnesses written in Pahlavi script</head>
   <app from="#PY-36.01_L1_W-01">
    <rdg wit="#Pt4 #F2 #J2 #M1">ʾytwnˈ</rdg>
   </app>
   <app from="#PY-36.01_L1_W-02">
    <rdg wit="#Pt4 #F2 #J2 #M1">ʾwˈ</rdg>
   </app>
   <app from="#PY-36.01_L1_W-03">
    <rdg wit="#Pt4 #F2 #J2 #M1">ḤNʾ</rdg>
   </app>
<!-- ... -->
  </listApp>
 </div>
</back>
Content model
<content>
 <sequence>
  <classRef key="model.headLike"
   minOccurs="0maxOccurs="unbounded"/>

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

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

   <elementRef key="app"/>
   <elementRef key="listApp"/>
  </alternate>
 </sequence>
</content>
Schema Declaration
<rng:element name="listApp">
 <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.sortable.attributes"/>
 <rng:ref name="att.declarable.attributes"/>
 <rng:ref name="att.typed.attributes"/>
 <rng:group>
  <rng:zeroOrMore>
   <rng:ref name="model.headLike"/>
  </rng:zeroOrMore>
  <rng:zeroOrMore>
   <rng:ref name="desc"/>
  </rng:zeroOrMore>
  <rng:oneOrMore>
   <rng:choice>
    <rng:ref name="app"/>
    <rng:ref name="listApp"/>
   </rng:choice>
  </rng:oneOrMore>
 </rng:group>
</rng:element>
element listApp
{
   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.sortable.attributes,
   att.declarable.attributes,
   att.typed.attributes,
   ( model.headLike*, desc*, ( app | listApp )+ )
}