Teildokument (Grundstruktur)

Kodierung

Beschreibung

Die Angabe, dass es sich um ein Teildokument handelt, wird im Attribut @subtype des Elements <text> mit dem Wert document-parts festgehalten.

Auf einen Blick

XPath
//TEI
Elemente & Attribute
Elemente Attribute
<text>
@type
minute (Protokoll)
document (Dokument)
miscellaneous (ohne nähere Bestimmung)
@subtype
document-parts (besteht aus Teildokumenten)

Kodierungsbeispiel

<text type="miscellaneous|minute|document" subtype="document-parts">
    <front>
        <head>Titel/Überschrift</head>
        <div type="content-note">
            <p>[Angabe zu z. B. den Quellen]</p>
        </div>
    </front>
    <body>
        <div type="document" xml:id="td_id-1">
            <div type="document-front">
                <head>[Titel des ersten Teildokuments]</head>
            </div>
            <div type="document-body">
                <p></p>
            </div>
        </div>
        <div type="document" xml:id="td_id-2">
            <div type="document-front">
                <head>[Titel des zweiten Teildokuments]</head>
            </div>
            <div type="document-body">
                <p></p>
            </div>
        </div>
    </body>
</text>