<locus>

<locus> (locus) 定義一個手稿或手稿部分裡的位置,通常是用一系列的 (可能不連續的) 頁面參照。 [10.3.5 References to Locations within a Manuscript]
組件 msdescription — Manuscript Description
屬性
scheme⚓︎ (scheme) 說明所指出位置的編頁架構。
狀態 非必備的
資料類型 teidata.pointer
from⚓︎ (from) 用正規格式指明該位置的起始點。
狀態 非必備的
資料類型 teidata.word
to⚓︎ (to) 用正規格式指明該位置的結束點。
狀態 非必備的
資料類型 teidata.word
俱乐部会员
可包含在於
analysis: cl phr s span
figures: cell figDesc
iso-fs: fDescr fsDescr
linking: ab seg
spoken: u writing
tagdocs: eg valDesc
verse: metSym rhyme
可包含
core: hi
gaiji: g
msdescription: locus
character data

The target attribute should only be used to point to elements that contain or indicate a transcription of the locus being described, as in the ‘Ben Jonson’ example.

To associate a locus element with a page image or other comparable representation, the global facs attribute should be used, as shown in the ‘Birds Praise of Love’ example. The facs attribute may be used to indicate one or more image files, as in that example, or alternatively it may point to one or more appropriate XML elements, such as the surface, zone, graphic, or binaryObject elements.

When a single page is being cited, use the from and to attributes with an identical value. When no clear endpoint is provided, the from attribute may be used without to; for example a citation such as ‘p. 3ff’ might be encoded <locus from="3">p. 3ff</locus>.

例子
<locus target="#zh-tw_P12 #zh-tw_P13 #zh-tw_P14 #zh-tw_P16">fols 12-14, 16r</locus>
<!-- ... -->
<pb xml:id="zh-tw_P12"/>
<pb xml:id="zh-tw_P13"/>
<pb xml:id="zh-tw_P14"/>
<pb xml:id="zh-tw_P15"/>
<pb xml:id="zh-tw_P16"/>
Content model
<content>
 <alternate minOccurs="0"
  maxOccurs="unbounded">

  <textNode/>
  <classRef key="model.gLike"/>
  <elementRef key="hi"/>
  <elementRef key="locus"/>
 </alternate>
</content>
宣告
<rng:element name="locus">
 <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.pointing.attributes"/>
 <rng:ref name="att.typed.attributes"/>
 <rng:optional>
  <rng:attribute name="scheme">
   <rng:ref name="teidata.pointer"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="from">
   <rng:ref name="teidata.word"/>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="to">
   <rng:ref name="teidata.word"/>
  </rng:attribute>
 </rng:optional>
 <rng:zeroOrMore>
  <rng:choice>
   <rng:text/>
   <rng:ref name="model.gLike"/>
   <rng:ref name="hi"/>
   <rng:ref name="locus"/>
  </rng:choice>
 </rng:zeroOrMore>
</rng:element>
element locus
{
   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.pointing.attributes,
   att.typed.attributes,
   attribute scheme { teidata.pointer }?,
   attribute from { teidata.word }?,
   attribute to { teidata.word }?,
   ( text | model.gLike | hi | locus )*
}