<?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>NZarathustra</authorname>
        <url>http://www.wittycomics.com/users/NZarathustra</url>
        <email></email>
    </author>
    <strip>
        <title>Artistic Temperament</title>
        <date>05-05-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>3</scene>
                <narration></narration>
                <speech>
                    <actor>21</actor>
                    <words>So what's with the change of scenery?</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>I decided to mix it up a little bit.  For instance, this is what it looks like in the Netherlands, where I was born.</words>
                </speech>
            </panel>
            <panel>
                <scene>1</scene>
                <narration></narration>
                <speech>
                    <actor>21</actor>
                    <words>Uh huh.  And what about this?</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>This is downtown Des Moines.</words>
                </speech>
            </panel>
            <panel>
                <scene>66</scene>
                <narration></narration>
                <speech>
                    <actor>21</actor>
                    <words>Just what I need.  A sarcastic man in my life.  And why am I always drinking?</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Don't worry... it's non-alcoholic rum (and probably organic too).</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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