1.2. Livre


Book = ( (Title, Subtitle?, TitleAbbrev?)?,
         BookInfo?,
         ( Dedication | ToC | LoT |
           Glossary | Bibliography | Preface |
           Chapter | Reference | Part |
           Article |
           Appendix |
           Index | SetIndex |
           Colophon
         )*
       )

Éléments : Book, Title, Subtitle, TitleAbbrev, BookInfo, Dedication, ToC, LoT, Glossary, Bibliography, Preface, Chapter, Reference, Part, Article, Appendix, Index, SetIndex, Colophon. Attributs : FPI.

Un livre (Book) est probablement l'élément de départ le plus commun pour un document DocBook. Un livre peut être contenu dans un ensemble (Set) seulement.

Un livre est constitué :

L'attribut FPI de l'élément Book renferme d'identificateur public formel du livre.

<Book>

  <Title>Livre des contes</Title>

  <BookInfo> &contenu.bookinfo; </BookInfo>

  <Dedication> &contenu.dedication; </Dedication>
  <ToC> &contenu.toc; </ToC>
  <LoT> &contenu.lot; </LoT>

  <Preface> &contenu.preface; </Preface>
  <Chapter><Title>Introduction</Title> &contenu.chapter; </Chapter>
  <Part><Title>Partie Une</Title> &contenu.part; </Part>
  <Part><Title>Partie Deux</Title> &contenu.part; </Part>
  <Appendix> &contenu.appendix; </Appendix>

  <Index> &contenu.index; </Index>
  <Colophon> &contenu.colophon; </Colophon>
</Book>