<TEI>
<TEI> (TEI文件) 包含符合TEI標準的單一文件,由一個TEI標頭及一份文本組成,可單獨出現或是作為元素teiCorpus的一部分。 4 Default Text Structure 15.1 Varieties of Composite Text | |||||||||
組件 | textstructure — 4 Default Text Structure | ||||||||
屬性 |
| ||||||||
屬於 | |||||||||
可包含 | |||||||||
宣告 |
element TEI { att.global.attributes, attribute version { xsd:decimal }?, ( teiHeader, ( ( model.resourceLike+, text? ) | text ) ) } <sch:ns prefix="tei" uri="http://www.tei-c.org/ns/1.0"/> <sch:ns prefix="rng" uri="http://relaxng.org/ns/structure/1.0"/> | ||||||||
例子 | <TEI> <teiHeader> <fileDesc> <titleStmt> <title>The shortest TEI Document Imaginable</title> </titleStmt> <publicationStmt> <p>First published as part of TEI P2.</p> </publicationStmt> <sourceDesc> <p>No source: this is an original work.</p> </sourceDesc> </fileDesc> </teiHeader> <text> <body> <p>This is about the shortest TEI document imaginable.</p> </body> </text> </TEI> |