<join>
<join> identifies a possibly fragmented segment of text, by pointing at the possibly discontiguous elements which compose it. [16.7 Aggregation] | |||||||||||||||
Modul | linking — Linking, Segmentation, and Alignment | ||||||||||||||
Attribute | 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.pointing (@targetLang, @target, @evaluate) att.typed (@type, @subtype)
| ||||||||||||||
Mitglied des | |||||||||||||||
Enthalten in | core: abbr add addrLine address author bibl biblScope cit citedRange corr date del distinct editor email emph expan foreign gloss head headItem headLabel hi imprint item l label lg list measure mentioned name note num orig p pubPlace publisher q quote ref reg resp rs said series sic soCalled sp speaker stage street term textLang time title unclear corpus: activity channel constitution derivation domain factuality interaction locale preparedness purpose dictionaries: case colloc def dictScrap entry entryFree etym form gen gram gramGrp hom hyph iType lang lbl mood number orth per pos pron re sense stress subc syll tns usg xr drama: actor camera caption castGroup castItem castList epilogue performance prologue role roleDesc set sound spGrp tech view header: authority change classCode distributor edition extent funder geoDecl handNote language licence principal scriptNote sponsor typeNote msdescription: accMat acquisition additions catchwords collation colophon condition custEvent decoNote explicit filiation finalRubric foliation heraldry incipit layout material msItem musicNotation objectType origDate origPlace origin provenance rubric secFol signatures source stamp summary support surrogates watermark namesdates: addName affiliation age birth bloc country death district education faith floruit forename genName geogFeat geogName langKnown nameLink nationality occupation offset orgName persName person personGrp placeName region residence roleName settlement sex socecStatus surname nets: graph textstructure: argument back body byline closer dateline div div1 div2 div3 div4 div5 div6 div7 docAuthor docDate docEdition docImprint docTitle epigraph floatingText front group imprimatur opener postscript salute signed text titlePage titlePart trailer | ||||||||||||||
Kann enthalten | |||||||||||||||
Deklaration |
element join { 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.pointing.attributes, att.typed.attributes, attribute result { data.name }?, attribute scope { text }?, ( model.descLike | model.certLike )* } | ||||||||||||||
Schematron | <s:assert test="contains(@target,' ')">You must supply at least two values for @target on <s:name/></s:assert> | ||||||||||||||
Beispiel | The following example is discussed in section 16.7 Aggregation: <sp> <speaker>Hughie</speaker> <p>How does it go? <q> <l xml:id="frog_x1">da-da-da</l> <l xml:id="frog_l2">gets a new frog</l> <l>...</l> </q> </p> </sp> <sp> <speaker>Louie</speaker> <p> <q> <l xml:id="frog_l1">When the old pond</l> <l>...</l> </q> </p> </sp> <sp> <speaker>Dewey</speaker> <p> <q>... <l xml:id="frog_l3">It's a new pond.</l> </q> </p> <join target="#frog_l1 #frog_l2 #frog_l3" result="lg" scope="root"/> </sp> The join element here identifies a linegroup (lg) comprising the three lines indicated by the target attribute. The value | ||||||||||||||
Beispiel | In this example, the attribute scope is specified with the value of <p>Southern dialect (my own variety, at least) has only <list xml:id="LP1"> <item> <s>I done gone</s> </item> <item> <s>I done went</s> </item> </list> whereas Negro Non-Standard basilect has both these and <list xml:id="LP2"> <item> <s>I done go</s> </item> </list>.</p> <p>White Southern dialect also has <list xml:id="LP3"> <item> <s>I've done gone</s> </item> <item> <s>I've done went</s> </item> </list> which, when they occur in Negro dialect, should probably be considered as borrowings from other varieties of English.</p> <join result="list" xml:id="LST1" target="#LP1 #LP2 #LP3" scope="branches"> <desc>Sample sentences in Southern speech</desc> </join> |