<listRef>

<listRef> (list of references) supplies a list of significant references in the current document or elsewhere.
Module tagdocs — Documentation Elements
Attributes
Member of
Contained by
analysis: cl phr s span
iso-fs: fDescr fsDescr
linking: ab seg
nets: eLeaf eTree
verse: metSym rhyme
May contain
core: desc ptr ref
tagdocs: listRef
Note

When listRef is used in the context of tagdocs, further restrictons apply:

  • It may only contain ptr or ref elements.
  • Each ptr or ref child should bear a target attribute, the value of which should be a single URI pointer.
Example
<listRef>
 <ptr target="#ddc12"/>
</listRef>
Schematron

<sch:rule context="( tei:classSpec | tei:dataSpec | tei:elementSpec | tei:macroSpec | tei:moduleSpec | tei:schemaSpec | tei:specGrp )/tei:listRef">
<sch:report test="tei:listRef">In the context of tagset documentation, the listRef element must not self-nest.</sch:report>
</sch:rule>
Schematron

<sch:rule context="( tei:classSpec | tei:dataSpec | tei:elementSpec | tei:macroSpec | tei:moduleSpec | tei:schemaSpec | tei:specGrp )/tei:listRef/tei:ptr | ( tei:classSpec | tei:dataSpec | tei:elementSpec | tei:macroSpec | tei:moduleSpec | tei:schemaSpec | tei:specGrp )/tei:listRef/tei:ref">
<sch:assert test="@target and not( matches( @target,'\s') )">In the context of tagset documentation, each ptr or ref element inside a listRef must have a target attribute with only 1 pointer as its value.</sch:assert>
</sch:rule>
Content model
<content>
 <sequence>
  <elementRef key="descminOccurs="0"
   maxOccurs="unbounded"/>

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

 </sequence>
</content>
Schema Declaration
<rng:element name="listRef">
 <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.typed.attributes"/>
 <rng:group>
  <rng:zeroOrMore>
   <rng:ref name="desc"/>
  </rng:zeroOrMore>
  <rng:oneOrMore>
   <rng:ref name="model.ptrLike"/>
  </rng:oneOrMore>
 </rng:group>
</rng:element>
element listRef
{
   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.typed.attributes,
   ( desc*, model.ptrLike+ )
}