<?xml version="1.0"?>

<!DOCTYPE comic [
  <!ELEMENT comic         (comicname, author, strip)>
  <!ELEMENT comicname     (#PCDATA)>
  <!ELEMENT author        (authorname,url,email)>
  <!ELEMENT authorname    (#PCDATA)>
  <!ELEMENT url           (#PCDATA)>
  <!ELEMENT email         (#PCDATA)>
  <!ELEMENT strip         (title, date, description, panels)>
  <!ELEMENT title         (#PCDATA)>
  <!ELEMENT date          (#PCDATA)>
  <!ELEMENT description   (#PCDATA)>
  <!ELEMENT panels        (panel+)>
  <!ELEMENT panel         (scene, narration?, (speech|thought|shout|whisper|heave)*) >
  <!ELEMENT scene         (#PCDATA)>
  <!ELEMENT narration     (#PCDATA)>
  <!ELEMENT speech        (actor, words)>
  <!ELEMENT thought       (actor, words)>
  <!ELEMENT shout         (actor, words)>
  <!ELEMENT whisper       (actor, words)>
  <!ELEMENT heave         (actor, words)>
  <!ELEMENT actor         (#PCDATA)>
  <!ELEMENT words         (#PCDATA)> 
]>

<comic>
    <comicname>Witty Comics</comicname>
    <author>
        <authorname>komix46</authorname>
        <url>http://www.wittycomics.com/users/komix46</url>
        <email></email>
    </author>
    <strip>
        <title></title>
        <date>09-27-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>66</scene>
                <narration>The bonobo was officially classified as Pan paniscus, or the diminutive Pan. But I believe a different label might have been selected had the discoverers known then what we know now. The old taxonomic name of the chimpanzee, P. satyrus-- which refers to the myth of apes as lustful satyrs--would have been perfect for the bonobo.</narration>
                <speech>
                    <actor>64</actor>
                    <words>hey baby...I'm a BONOBO...a lustful satyr</words>
                </speech>
                <speech>
                    <actor>69</actor>
                    <words>You BONOBOS is freakish!!!</words>
                </speech>
            </panel>
            <panel>
                <scene>66</scene>
                <narration></narration>
                <speech>
                    <actor>64</actor>
                    <words>ooOO YEAHH...</words>
                </speech>
                <speech>
                    <actor>69</actor>
                    <words></words>
                </speech>
            </panel>
            <panel>
                <scene>66</scene>
                <narration></narration>
                <speech>
                    <actor>64</actor>
                    <words></words>
                </speech>
                <speech>
                    <actor>69</actor>
                    <words></words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

<!-- ComicML is based on ComicsML http://www.xml.com/pub/a/2001/04/18/comicsml.html -->

