<?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>winnie08</authorname>
        <url>http://www.wittycomics.com/users/winnie08</url>
        <email></email>
    </author>
    <strip>
        <title>animals</title>
        <date>05-08-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>35</scene>
                <narration>Lee is here to perform some experiments on some of the lab animals</narration>
                <speech>
                    <actor>16</actor>
                    <words>Hello, my name is Lee. Remember we spoke on the phone, and through e-mail. ok, imma go inside, and check the place out.</words>
                </speech>
                <speech>
                    <actor>13</actor>
                    <words>Oh yea, i remember. Well my name is Mike, Let's just go to the back, and we can talk more.</words>
                </speech>
            </panel>
            <panel>
                <scene>47</scene>
                <narration>Lee is having a conversation with Bob , the AT manager.</narration>
                <shout>
                    <actor>15</actor>
                    <words>Well Hello There!</words>
                </shout>
                <speech>
                    <actor>16</actor>
                    <words>Hi, um i'm Lee, im the one that's suppose to be doing that experiment.</words>
                </speech>
            </panel>
            <panel>
                <scene>47</scene>
                <narration></narration>
                <speech>
                    <actor>15</actor>
                    <words>What experiment?!!!!</words>
                </speech>
                <speech>
                    <actor>16</actor>
                    <words>The one that me and Mike talked about over the phone, and through e-mail.</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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