View Single Post
Old 03-29-2009, 09:47 PM   #43
cerement
Groupie
cerement knows what time it iscerement knows what time it iscerement knows what time it iscerement knows what time it iscerement knows what time it iscerement knows what time it iscerement knows what time it iscerement knows what time it iscerement knows what time it iscerement knows what time it iscerement knows what time it is
 
cerement's Avatar
 
Posts: 170
Karma: 2000
Join Date: Apr 2008
Location: San José, CA
Device: Amazon Kindle 1, Sony PRS-300, Amazon Kindle 3
Quote:
Originally Posted by Hadrien View Post
I'm not even sure that you could really chunk pure DTBook as you need to use the <levelx> elements (http://www.daisy.org/z3986/structure...ts.html#level1).
From what I've been able to pull out of the DAISY 3 Structure Guidelines, you can have multipart books using DTBook, each part still has to have the necessary headers and the "book" is logically segmented (you can't just randomly segment a file into arbitrary chunks).

Ex.
Code:
<dtbook>
    <head>
    </head>
    <book>
        <bodymatter>
            <level1 class="chapter">
                <h1>Chapter 1</h2>
                <p>(paragraph tags or any block level element)</p>
            </level1>
        </bodymatter>
    </book>
</dtbook>
Code:
<dtbook>
    <head>
    </head>
    <book>
        <bodymatter>
            <level1 class="chapter">
                <h1>Chapter 2</h2>
                <p>(paragraph tags or any block level element)</p>
            </level1>
        </bodymatter>
    </book>
</dtbook>
cerement is offline   Reply With Quote