<?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-03-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>33</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>Well, I'm glad you liked the comic.  So I'm good for another day?</words>
                </speech>
                <speech>
                    <actor>21</actor>
                    <words>Yeah.  Hey, that book you gave me is kind of difficult to read.</words>
                </speech>
            </panel>
            <panel>
                <scene>33</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>Well, the guy who wrote it is one of the most intelligent men I've ever met.</words>
                </speech>
                <speech>
                    <actor>21</actor>
                    <words>I was actually referring to the fact that it's written entirely in crayon.</words>
                </speech>
            </panel>
            <panel>
                <scene>33</scene>
                <narration></narration>
                <speech>
                    <actor>13</actor>
                    <words>Why do I feel vaguely insulted, confused and delighted all at the same time?</words>
                </speech>
                <speech>
                    <actor>21</actor>
                    <words>Goddess powers.  Don't worry about it... just smile and nod like usual.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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