Difference between revisions of "Text structure (ePistolarium)"

From XML
Jump to: navigation, search
(Initial version)
 
(Use of group discontinued)
Line 14: Line 14:
 
</div>
 
</div>
 
</body>
 
</body>
</text>
 
</pre>
 
 
However, a number of documents in the Pierre Bayle corpus contain both a text and its translation, encoded using the group element:
 
 
<pre>
 
<text type="composite">
 
<group>
 
<text type="original">
 
<body>
 
<div xml:id="div-1" xml:lang="la" type="artifact" subtype="letter">
 
...
 
</div>
 
</body>
 
</text>
 
<text type="translation">
 
<body>
 
<div xml:id="div-2" xml:lang="fr" type="artifact" subtype="letter">
 
...
 
</div>
 
</body>
 
</text>
 
</group>
 
 
</text>
 
</text>
 
</pre>
 
</pre>

Revision as of 13:37, 23 November 2017

The documents in the ePistolarium have the following basic structure:

<text>
<body>
<div xml:id="div-1" type="artifact" subtype="letter">
...
</div>
<div xml:id="div-2" type="para">
...
</div>
<div xml:id="div-3" type="notes">
...
</div>
</body>
</text>