<standOff>

<standOff> Functions as a container element for linked data, contextual information, and stand-off annotations embedded in a TEI document. [16.10 The standOff Container]
組件 linking — Linking, Segmentation, and Alignment
屬性
俱乐部会员
可包含在於
core: teiCorpus
textstructure: TEI
可包含
例子

This example shows an encoding of morphosyntactic features similar to the encoding system used by ISO 24611 (MAF).

<TEI xmlns="http://www.tei-c.org/ns/1.0">
 <teiHeader>
<!-- ... -->
 </teiHeader>
 <text>
  <body>
<!-- ... -->
   <p>
    <w xml:id="w51">I</w>
    <w xml:id="w52">wanna</w>
    <w xml:id="w53">put</w>
    <w xml:id="w54">up</w>
    <w xml:id="w55">new</w>
    <w xml:id="w56">wallpaper</w>
    <pc>.</pc>
   </p>
<!-- ... -->
  </body>
 </text>
 <standOff type="morphosyntax">
  <spanGrp type="wordForm">
   <span target="#w51ana="#fs01"/>
   <span target="#w52ana="#fs02"/>
   <span target="#w52ana="#fs03"/>
   <span target="#w53 #w54ana="#fs04"/>
   <span target="#w55ana="#fs05"/>
   <span target="#w56ana="#fs06"/>
  </spanGrp>
  <fs xml:id="fs01">
   <f name="lemma">
    <string>I</string>
   </f>
   <f name="pos">
    <symbol value="PP"/>
   </f>
  </fs>
  <fs xml:id="fs02">
   <f name="lemma">
    <string>want</string>
   </f>
   <f name="pos">
    <symbol value="VBP"/>
   </f>
  </fs>
  <fs xml:id="fs03">
   <f name="lemma">
    <string>to</string>
   </f>
   <f name="pos">
    <symbol value="TO"/>
   </f>
  </fs>
  <fs xml:id="fs04">
   <f name="lemma">
    <string>put up</string>
   </f>
   <f name="pos">
    <symbol value="VB"/>
   </f>
  </fs>
  <fs xml:id="fs05">
   <f name="lemma">
    <string>new</string>
   </f>
   <f name="pos">
    <symbol value="JJ"/>
   </f>
  </fs>
  <fs xml:id="fs06">
   <f name="lemma">
    <string>wallpaper</string>
   </f>
   <f name="pos">
    <symbol value="NN"/>
   </f>
  </fs>
 </standOff>
</TEI>
例子

This example shows an encoding of contextual information which is referred to from the main text.

<TEI xmlns="http://www.tei-c.org/ns/1.0">
 <teiHeader>
<!-- ... -->
 </teiHeader>
 <standOff>
  <listPlace>
   <place xml:id="LATL">
    <placeName>Atlanta</placeName>
    <location>
     <region key="US-GA">Georgia</region>
     <country key="USA">United States of America</country>
     <geo>33.755 -84.39</geo>
    </location>
    <population when="1963"
     type="interpolatedCensusquantity="489359"
     source="https://www.biggestuscities.com/city/atlanta-georgia"/>

   </place>
   <place xml:id="LBHM">
    <placeName>Birmingham</placeName>
    <location>
     <region key="US-AL">Alabama</region>
     <country key="USA">United States of America</country>
     <geo>33.653333 -86.808889</geo>
    </location>
    <population when="1963"
     type="interpolatedCensusquantity="332891"
     source="https://www.biggestuscities.com/city/birmingham-alabama"/>

   </place>
  </listPlace>
 </standOff>
 <text>
  <body>
<!-- ... -->
   <p>Moreover, I am <choice>
     <sic>congnizant</sic>
     <corr>cognizant</corr>
    </choice> of the interrelatedness of all communities and
   <lb/>states. I cannot sit idly by in <placeName ref="#LATL">Atlanta</placeName> and not be concerned about what happens
   <lb/>in <placeName ref="#LBHM">Birmingham</placeName>. <seg xml:id="FQ17">Injustice anywhere is a threat to justice everywhere.</seg> We
   <lb/>are caught in an inescapable network of mutuality, tied in a single garment
   <lb/>of destiny. Whatever affects one directly affects all indirectly. Never
   <lb/>again can we afford to live with the narrow, provincial <soCalled rendition="#Rqms">outside agitator</soCalled>
    <lb/>idea. Anyone who lives inside the United States can never be considered
   <lb/>an outsider anywhere in this country.</p>
<!-- ... -->
  </body>
 </text>
</TEI>
Schematron

<sch:assert test="@type or not(ancestor::tei:standOff)">This
<sch:name/> element must have a @type attribute, since it is
nested inside a <sch:name/>
</sch:assert>
Content model
<content>
 <classRef key="model.standOffPart"
  minOccurs="1maxOccurs="unbounded"/>

</content>
宣告
<rng:element name="standOff">
 <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:ref name="att.declaring.attributes"/>
 <rng:oneOrMore>
  <rng:ref name="model.standOffPart"/>
 </rng:oneOrMore>
</rng:element>
element standOff
{
   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,
   att.declaring.attributes,
   model.standOffPart+
}