<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] | |
Módulo | linking — Linking, Segmentation, and Alignment |
Atributos | att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @style, @rendition)) (att.global.linking (@corresp, @synch, @sameAs, @copyOf, @next, @prev, @exclude, @select)) (att.global.analytic (@ana)) (att.global.facs (@facs)) (att.global.change (@change)) (att.global.responsibility (@cert, @resp)) (att.global.source (@source)) att.typed (@type, @subtype) att.declaring (@decls) |
Miembro de | |
Contenido en | |
Puede contener | dictionaries: entry entryFree superEntry drama: castList figures: table header: biblFull listChange linking: alt altGrp annotation join joinGrp link linkGrp listAnnotation seg timeline msdescription: msDesc namesdates: listEvent listNym listObject listOrg listPerson listPlace listRelation nets: eTree forest graph listForest tree spoken: annotationBlock u transcr: listTranspose substJoin zone |
Ejemplo | 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="#w51" ana="#fs01"/> <span target="#w52" ana="#fs02"/> <span target="#w52" ana="#fs03"/> <span target="#w53 #w54" ana="#fs04"/> <span target="#w55" ana="#fs05"/> <span target="#w56" ana="#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> |
Ejemplo | 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="interpolatedCensus" quantity="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="interpolatedCensus" quantity="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> |
Declaración | <rng:element name="standOff"> 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+ } |