Divisions

3.1. Partie


Part = ( PartInfo?,
         ( Title, Subtitle?, TitleAbbrev? ),
         PartIntro?,
         ( Appendix |
           Chapter |
           ToC | LoT | Index | Glossary | Bibliography |
           Article | Preface | RefEntry | Reference
         )+
       )

PartIntro = ( ( Title, Subtitle?, TitleAbbrev? )?,
              ( ( %divcomponent.mix; )+,
                (Sect1* | RefEntry* | SimpleSect* | Section* )
              ) |
              ( Sect1+ | RefEntry+ | SimpleSect+ | Section+ )
            )

Éléments : Part, PartInfo, Title, Subtitle, TitleAbbrev, PartIntro, Appendix, ToC, LoT, Index, Glossary, Bibliography, Article, Preface, RefEntry, Reference, Sect1, SimpleSect, Section.

Un livre peut être découpé en plusieurs parties. Pour cela, on utilise un élément Part).

Une partie est constituée :

L'introduction de la partie est constituée :

<Part>
  <Title>Partie Une</Title>
  <PartIntro>
    <Title>Introduction</Title>
    <Para>Cette partie décrit le mécanisme qui sera utilisé
      dans les parties suivantes.</Para>
  </PartIntro>
  <Preface> &contenu.preface; </Preface>
  <Chapter><Title>Introduction</Title> &contenu.chapter; </Chapter>
  <Chapter><Title>Vif du sujet</Title> &contenu.chapter; </Chapter>
  <Appendix> &contenu.appendix; </Appendix>
</Part>