<layout>

<layout> (layout) describes how text is laid out on the page or surface of the object, including information about any ruling, pricking, or other evidence of page-preparation techniques. [10.7.2 Writing, Decoration, and Other Notations]
Modul msdescription — Manuscript Description
Attribute
columns⚓︎ (columns) specifies the number of columns per page
Zustand Optional
Datentyp 1–2 Vorkommen von teidata.count durch Leerzeichen getrennt
streams⚓︎ (textual streams) indicates the number of streams per page, each of which contains an independent textual stream
Zustand Optional
Datentyp 1–2 Vorkommen von teidata.count durch Leerzeichen getrennt
ruledLines⚓︎ (ruled lines) specifies the number of ruled lines per column
Zustand Optional
Datentyp 1–2 Vorkommen von teidata.count durch Leerzeichen getrennt
writtenLines⚓︎ (written lines) specifies the number of written lines per column
Zustand Optional
Datentyp 1–2 Vorkommen von teidata.count durch Leerzeichen getrennt
Enthalten in
msdescription: layoutDesc
Kann enthalten
dictionaries: lang oRef pRef
gaiji: g
header: biblFull idno
iso-fs: fLib fs fvLib
textstructure: floatingText
verse: caesura rhyme
Zeichendaten
Beispiel
<layout columns="1ruledLines="25 32">Most pages have between 25 and 32 long lines ruled in lead.</layout>
Beispiel
<layout columns="2ruledLines="42">
 <p>2 columns of 42 lines ruled in ink, with central rule
   between the columns.</p>
</layout>
Beispiel
<layout columns="1 2writtenLines="40 50">
 <p>Some pages have 2 columns, with central rule
   between the columns; each column with between 40 and 50 lines of writing.</p>
</layout>
Beispiel
<layout streams="3columns="3"/>
<!-- Further down in document body -->
<div type="page">
 <ab>
  <pb/>
   一二三<cb type="top-stream"/>
   一二三<cb type="mid-stream"/>
   一二三<cb type="bottom-stream"/>
<!-- cb here for demo purposes -->
 </ab>
</div>
Content model
<content>
 <macroRef key="macro.specialPara"/>
</content>
Schema Deklaration
<rng:element name="layout">
 <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:optional>
  <rng:attribute name="columns">
   <rng:list>
    <rng:ref name="teidata.count"/>
    <rng:optional>
     <rng:ref name="teidata.count"/>
    </rng:optional>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="streams">
   <rng:list>
    <rng:ref name="teidata.count"/>
    <rng:optional>
     <rng:ref name="teidata.count"/>
    </rng:optional>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="ruledLines">
   <rng:list>
    <rng:ref name="teidata.count"/>
    <rng:optional>
     <rng:ref name="teidata.count"/>
    </rng:optional>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:optional>
  <rng:attribute name="writtenLines">
   <rng:list>
    <rng:ref name="teidata.count"/>
    <rng:optional>
     <rng:ref name="teidata.count"/>
    </rng:optional>
   </rng:list>
  </rng:attribute>
 </rng:optional>
 <rng:ref name="macro.specialPara"/>
</rng:element>
element layout
{
   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,
   attribute columns { list { teidata.count, teidata.count? } }?,
   attribute streams { list { teidata.count, teidata.count? } }?,
   attribute ruledLines { list { teidata.count, teidata.count? } }?,
   attribute writtenLines { list { teidata.count, teidata.count? } }?,
   macro.specialPara
}