Whole document tree OrderedListDescriptionNumbered or lettered list, consisting of ListItems. A ListItem in an OrderedList contains paragraphs and other block-oriented elements, which may in turn contain other lists; an OrderedList may be nested within other lists, too. OrderedList has common, Numeration, InheritNum, Continuation, and Spacing attributes. Processing ExpectationsIf no value is supplied for the Numeration attribute, Arabic numbering (1, 2, 3, . . .) is to be used. ParentsThese elements contain OrderedList: Appendix, Article, BiblioDiv, Bibliography, BlockQuote, Callout, Caution, Chapter, Dedication, Example, Footnote, GlossDef, GlossDiv, Glossary, Highlights, Important, Index, IndexDiv, InformalExample, LegalNotice, ListItem, MsgExplan, MsgText, Note, Para, PartIntro, Preface, Procedure, RefSect1, RefSect2, RefSect3, RefSynopsisDiv, Sect1, Sect2, Sect3, Sect4, Sect5, SetIndex, Sidebar, SimpleSect, Step, Tip, Warning, entry. ChildrenOrderedList contains ListItem. In some contexts, additional elements may be allowed by inclusions in parent elements. Similarly, in some contexts, some of these elements may be invalid due to exclusions in parent elements. Attributes
Examples<ORDEREDLIST NUMERATION="Upperalpha"> <LISTITEM> <PARA>This ListItem will be preceded by a capital A. </PARA> </LISTITEM> <LISTITEM> <PARA>And this one by a capital B. </PARA> </LISTITEM> <LISTITEM> <PARA>Use the Continuation attribute to continue a sequence of ListItem numbering across OrderLists that are separated by other text. </PARA> <ORDEREDLIST NUMERATION="Arabic"> <LISTITEM> <PARA>This nested OrderedList will be numbered 1, 2, etc. </PARA> </LISTITEM> <LISTITEM> <PARA>No list should contain only one member, as a matter of good style. </PARA> </LISTITEM> </ORDEREDLIST> </LISTITEM> <LISTITEM> <PARA>Don't forget that OrderedList has common attributes. </PARA> <ORDEREDLIST NUMERATION="Arabic" INHERITNUM="Inherit"> <LISTITEM> <PARA>This nested OrderedList will be numbered B.1, B.2, etc. </PARA> </LISTITEM> <LISTITEM> <PARA>No list should contain only one member, as a matter of good style. </PARA> </LISTITEM> </ORDEREDLIST> </LISTITEM> </ORDEREDLIST> |