§
<text>
<text> (text) contains the complete text of the article. Must include a front containing an abstract, a body containing the main text, and a back containing the bibliography and any appendices. [4. Default Text Structure 15.1. Varieties of Composite Text] | |||||
Module | textstructure | ||||
Attributes | Attributes att.global (@xml:id, @n, @xml:lang, @xml:base, @xml:space) (att.global.rendition (@rend, @rendition)) (att.global.responsibility (@cert, @resp)) att.typed (@type)
| ||||
Contained by | textstructure: TEI | ||||
May contain | |||||
Declaration | element text { attribute type { text }?, ( model.global*, ( front, model.global* )?, ( body | group ), model.global*, ( back, model.global* )? ) } | ||||
Schematron | <sch:rule context="tei:text[not(tei:body/tei:div[@type = ('editorialIntroduction')])]"> <sch:assert test="parent::tei:TEI/tei:teiHeader/tei:profileDesc/tei:textClass/tei:keywords"> An article must have a keyword list in the header. </sch:assert></sch:rule> | ||||
Schematron | <sch:rule context="tei:text[not(tei:body/tei:div[@type = ('editorialIntroduction')])]"> <sch:assert test="tei:front/tei:div[@type='abstract']"> An article must have a front section with an abstract. </sch:assert></sch:rule> | ||||
Schematron | <sch:rule context="tei:text[not(tei:body/tei:div[@type = ('editorialIntroduction')])]"> <sch:assert test="tei:back/tei:div[@type='bibliography']/tei:listBibl"> An article must have a back section with a bibliography. </sch:assert></sch:rule> | ||||
Example | <text> <front> <div type="abstract" xml:id="abstract"> <p>This article is about...</p> </div> </front> <body> <div xml:id="intro"> <head>Introduction</head> <p>A great deal of previous research...</p> </div> <div xml:id="method"> <head>Method</head> <p>This project was undertaken...</p> </div> </body> <back> <div type="bibliography"> <listBibl> <bibl>[...]</bibl> </listBibl> </div> </back> </text> | ||||
Note | This element should not be used to represent a text which is inserted at an arbitrary point within the structure of another, for example as in an embedded or quoted narrative; the <floatingText> is provided for this purpose. |