<?xml version="1.0"?>

<!-- An example of xml file with an externally defined DTD that is refined
     internally.
-->

<!DOCTYPE CDAlbum SYSTEM "CDAlbum.dtd" [
  <!ELEMENT CDAlbum (title, author+, image?, price)>
  <!ELEMENT price (#PCDATA)*>
]>

<CDAlbum>
   <title>Meet Virginia</title>
   <author>Train</author>
   <price>$12</price>
</CDAlbum>

<!-- JP Martin -->