Whole document tree ItemizedListDescriptionList in which each item is marked with a bullet, dash, or other dingbat (or no mark at all). It consists of one or more ListItems. A ListItem in an ItemizedList contains paragraphs and other block-oriented elements, which may in turn contain other lists; an ItemizedList may be nested within other lists, too. It has common attributes and a Mark attribute. Your application might supply the mark to be used for an ItemizedList, but you can use a keyword as the value of this attribute to indicate the mark you desire to be used; there is no fixed list of these. ParentsThese elements contain ItemizedList: 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. ChildrenItemizedList 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<ITEMIZEDLIST MARK="bullet" SPACING="compact"> <LISTITEM> <PARA>This ItemizedList contains two short ListItems. </PARA> <PARA>For that reason, the Spacing attribute has been set to indicate that vertical spacing should be decreased from the default. </PARA> </LISTITEM> <LISTITEM> <PARA>The Mark attribute indicates that the ListItems should be preceded by bullets. </PARA> <ITEMIZEDLIST MARK="dash"> <LISTITEM> <PARA>This is an ItemizedList nested within the outer ItemizedList. </PARA> </LISTITEM> <LISTITEM> <PARA>Instead of using the two attributes shown, solve these issues in your style sheet. </PARA> </LISTITEM> </ITEMIZEDLIST> </LISTITEM> </ITEMIZEDLIST> |