<?xml version="1.0" encoding="ISO-8859-1"?>
<xs:schema xml:lang="fr" xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:element name="TUTORIAL">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="1" minOccurs="0" ref="TITLE"/>
<xs:element maxOccurs="unbounded" minOccurs="1" ref="SECTION"/>
</xs:sequence>
</xs:complexType>
</xs:element>

<xs:element name="TITLE" type="xs:string"/>

<xs:element name="SECTION">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="1" minOccurs="0" ref="TITLE"/>
<xs:choice maxOccurs="unbounded" minOccurs="1">
<xs:element ref="PARAGRAPH"/>
<xs:element ref="EXAMPLE"/>
<xs:element ref="LIST"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>

<xs:element name="PARAGRAPH">
<xs:complexType mixed="true">
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:element ref="TITLE"/>
<xs:group ref="text"/>
</xs:choice>
</xs:complexType>
</xs:element>

<xs:element name="EXAMPLE">
<xs:complexType mixed="true">
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:element ref="SPACE"/>
</xs:choice>
</xs:complexType>
</xs:element>

<xs:element name="LIST">
<xs:complexType>
<xs:sequence maxOccurs="unbounded" minOccurs="1">
<xs:element ref="LI"/>
</xs:sequence>
</xs:complexType>
</xs:element>

<xs:element name="LI">
<xs:complexType mixed="true">
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:group ref="text"/>
</xs:choice>
</xs:complexType>
</xs:element>

<xs:element name="EMPHASIS" type="xs:string"/>

<xs:element name="CODE" type="xs:string"/>

<xs:element name="SPACE"/>

<xs:element name="LINK">
<xs:complexType mixed="true">
<xs:attribute name="href" type="xs:string"/>
</xs:complexType>
</xs:element>

<xs:group name="text">
<xs:choice>
<xs:element ref="EMPHASIS"/>
<xs:element ref="CODE"/>
<xs:element ref="LINK"/>
</xs:choice>
</xs:group>
</xs:schema>