This descriptor specifies the metadatas and the content for a book.
A book is defined by a collection of chapters, a chapter by a collection of sections, a section by a file.
An XSD is available at:
<book> <id/> <title/> <author/> <date/> <chapters> <chapter> <id/> <title/> <sections> <section> <id/> <title/> <file/> </section> </sections> </chapter> </chapters> </book>
Describes the book layout and packaging.
| Element | Type | Description |
|---|---|---|
id |
String |
Specifies the id of this book. This is a symbolic name for a particular book from this project. |
title |
String |
Specifies the title of this book. |
author |
String |
Specifies the author of this book. |
date |
String |
Specifies the date of this book. |
chapters/chapter* |
List<Chapter> |
(Many) Specifies a collection of chapters. |
No description.
| Element | Type | Description |
|---|---|---|
id |
String |
Specifies the id of this chapter. This is a symbolic name for a particular chapter. |
title |
String |
Specifies the title of this chapter. |
sections/section* |
List<Section> |
(Many) Specifies a collection of sections. |