Namespace: |
|
Type: |
embedded complexType |
Content: |
complex, 4 attributes, 2 elements |
Defined: |
globally in eruditarticle.xsd, see XML source |
Includes: |
definitions of 3 attributes and 2 elements |
Used: |
at 2 locations |
XML Representation Summary |
|||||
<listeord |
|||||
compteur | = |
xs:positiveInteger |
|||
nbcol | = |
xs:positiveInteger |
|||
noparent | = |
xs:boolean |
|||
numeration | = |
("autre" | "decimal" | "lettremaj" | "lettremin" | "romainmaj" | "romainmin") |
|||
> |
|||||
|
|||||
</listeord> |
<listeord numeration="romainmaj" compteur="3"> <elemliste>…</elemliste> <elemliste>…</elemliste> <elemliste>…</elemliste> </listeord>exemple 2
<listeord numeration="lettremin"> <elemliste>…</elemliste> <elemliste> <alinea>…</alinea> <listeord numeration="romainmin"> <elemliste>…</elemliste> <elemliste>…</elemliste> <elemliste>…</elemliste> </listeord> </elemliste> <elemliste>…</elemliste> </listeord>
<xs:element name="listeord"> <xs:complexType> <xs:sequence maxOccurs="unbounded"> </xs:sequence> </xs:attribute> </xs:attribute> </xs:attribute> </xs:complexType> </xs:element> |
<xs:attribute name="compteur" type="xs:positiveInteger"> </xs:attribute> |
<xs:attribute name="noparent" type="xs:boolean"> </xs:attribute> |
autre | autre numération |
decimal | nombres décimaux (1, 2, 3, …) |
lettremaj | lettres ascii en majuscule (A, B, C, … Z) |
lettremin | lettres ascii en minuscule (a, b, c, … z) |
romainmaj | chiffres romains en majuscule (I, II, III, IV, V, …) |
romainmin | chiffres romains en minuscule ( i, ii, iii, iv, v, …) |
<xs:attribute name="numeration" type="numtype" use="required"> </xs:attribute> |