<?xml version="1.0" standalone="no" ?>
<?xml-stylesheet href="lgt.xsl" type="text/xsl" ?>

<!DOCTYPE book [
<!ENTITY pages SYSTEM "pages.xml">
<!ELEMENT book (title, author, date, page+)>
<!ELEMENT page (picture, text)>
<!ELEMENT author (#PCDATA)>
<!ELEMENT title (#PCDATA)>
<!ELEMENT date (#PCDATA)>
<!ELEMENT text (#PCDATA)>
<!ATTLIST picture 
   filename CDATA #REQUIRED
   width    CDATA #IMPLIED
   height   CDATA #IMPLIED
   alt      CDATA #REQUIRED
>
<!ATTLIST page
   ID CDATA #REQUIRED>
]>

<!-- if you see this without asking for the page source, your browser
is probably not sufficiently xml aware 
(best bet: recent version of Internet Explorer, maybe DocZilla)-->


<book>
  <title>The Little Girl And The T-Rex</title>
  <author>Isabel, 5</author>
  <date>October 2003</date>
  &pages;
</book>

