UT4.6 Lugares

Lugares
XML Lugares
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE lugares SYSTEM "06.dtd">
<lugares xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="06.xsd">
    En el 
    <lugar>
        polo norte
    </lugar>
    hace mucho frío. Pero, en el 
    <lugar>
        desierto del Sahara
    </lugar> 
    hace mucho calor.
</lugares>
DTD Lugares
<!ELEMENT lugares (#PCDATA|lugar)*>
<!ATTLIST lugares xmlns:xsi CDATA #IMPLIED
                xsi:noNamespaceSchemaLocation CDATA #IMPLIED>
<!ELEMENT lugar (#PCDATA)>
XSD Lugares
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="lugares">
        <xs:complexType mixed="true">
            <xs:sequence>
                <xs:element name="lugar" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
            </xs:sequence>
        </xs:complexType>
    </xs:element>
</xs:schema>