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 :
de métainformations (PartInfo), facultatives,
d'un titre (Title) obligatoire, d'un sous-titre (Subtitle et titre abrégé (TitleAbbrev) facultatifs,
d'une introduction (PartIntro), facultative,
d'un ou plusieurs éléments composant la partie, parmi :
une annexe (Appendix),
un chapitre (Chapter),
une table des matières (ToC),
une liste de titres (LoT),
un index (Index),
un glossaire (Glossary),
une bibliographie (Bibliography),
un article (Article),
une préface (Preface),
une entrée de référence (RefEntry),
une référence (Reference),
L'introduction de la partie est constituée :
d'un titre (Title), sous-titre (Subtitle et titre abrégé (TitleAbbrev) facultatifs,
d'une première partie, facultative, composée d'éléments de type bloc,
d'un nombre quelconque de sections (au moins une si la première partie n'existe pas) Sect1, RefEntry, SimpleSect ou Section (un seul type de section est autorisé).
<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> |