Structuring in Acts and Scenes
Acts are enclosed in <div>
elements that contain a @type
attribute with the value "act"
. The individual scenes/entries are in a subordinate <div>
element, which contains the attribute value pair @type="scene"
.
<div n="[level]" type="act"> <head>[title act]</head> <div n="[subordinate level]" type="scene"> <head>[title entry 1]</head> <!-- all elements and text components of the 1st entry --> </div> <div n="[subordinate level]" type="scene"> <head>[title entry 2]</head> <!-- all elements and text components of the 2nd entry --> </div> </div>