Beispiel: <teiCorpus>
These search results reproduce every example of the use of <teiCorpus> in the Guidelines, including all localised and translated versions. In some cases, the examples have been drawn from discussion of other elements in the Guidelines and illustrating the use of <teiCorpus> is not the main focus of the passage in question. In other cases, examples may be direct translations of each other, and hence identical from the perspective of their encoding.
4 Default Text Structure
<teiHeader>
<!-- header for corpus -->
</teiHeader>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<!-- header for first text -->
</teiHeader>
<text>
<!-- content of first text -->
</text>
</TEI>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<!-- header for second text -->
</teiHeader>
<text>
<!-- content of second text -->
</text>
</TEI>
<!-- more TEI elements here -->
</teiCorpus>
<teiHeader/>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader/>
<text/>
</TEI>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader/>
<text/>
</TEI>
</teiCorpus>
<teiHeader>
<!-- 該文集的總header -->
</teiHeader>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<!-- 第一個文章的header -->
</teiHeader>
<text>
<!-- 第一個文章的內容 -->
</text>
</TEI>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<!-- 第二個文章的header -->
</teiHeader>
<text>
<!-- 第二個文章的內容 -->
</text>
</TEI>
<!-- 其他TEI元素 -->
</teiCorpus>
2 The TEI Header
2.1.1 The TEI Header and its Components
<teiHeader type="corpus">
<!-- corpus-level metadata here -->
</teiHeader>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader type="text">
<!-- metadata specific to this text here -->
</teiHeader>
<text>
<!-- ... -->
</text>
</TEI>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader type="text">
<!-- metadata specific to this text here -->
</teiHeader>
<text>
<!-- ... -->
</text>
</TEI>
</teiCorpus>
15 Language Corpora
15.1 Varieties of Composite Text
<teiHeader type="corpus"/>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader type="text"/>
<text/>
</TEI>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader type="text"/>
<text/>
</TEI>
</teiCorpus>
15.3.1 Combining Corpus and Text Headers
<teiHeader>
<fileDesc>
<!-- corpus file description-->
</fileDesc>
<encodingDesc>
<!-- default encoding description -->
</encodingDesc>
<revisionDesc>
<!-- corpus revision description -->
</revisionDesc>
</teiHeader>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<!-- file description for this corpus text -->
</fileDesc>
</teiHeader>
<text>
<!-- first corpus text -->
</text>
</TEI>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<!-- file description for this corpus text -->
</fileDesc>
<encodingDesc>
<!-- encoding description for this corpus text, over-riding the default -->
</encodingDesc>
</teiHeader>
<text>
<!-- second corpus text -->
</text>
</TEI>
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<!-- file description for third corpus text -->
</fileDesc>
</teiHeader>
<text>
<!-- third corpus text -->
</text>
</TEI>
</teiCorpus>