Inserts
Newspaper inserts are reproduced in the <floatingText>
element, which follows the parent newspaper issue in the <body>
area (in exceptional cases in the <back>
area). The <floatingText>
element is always located within a parent <div>
element of the first level.
Within the <floatingText>
element, the basic structure elements of TEI documents <front>
, <body>
and <back>
can again be used. For the structuring of the insert, the inventory for structuring newspaper issues and periodicals in general is available.
<body> <!-- text of the main issue --> <div type="jPoliticalNews"> <!-- political news of the main issue --> <div type="jArticle">[political news]</div> <div type="jArticle">[more political news]</div> </div> <div type="jFinancialNews"> <!-- economic news of the main issue --> <div type="jArticle">[economic news]</div> <div type="jArticle">[more economic news]</div> </div> <div type="jSupplement"> <!-- insert --> <floatingText> <front>[headline of the insert]</front> <body> <!-- text of the insert --> <div type="jPoliticalNews"> <!-- political news of the insert --> <div type="jArticle">[political news]</div> <div type="jArticle">[more political news]</div> </div> <div type="jFinancialNews"> <!-- economic news of the insert --> <div type="jArticle">[economic news]</div> <div type="jArticle">[more economic news]</div> </div> </body> <back>[closing text of the insert]</back> </floatingText> </div> </body>