<?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>Paul_Cromwell</authorname>
        <url>http://www.wittycomics.com/users/Paul_Cromwell</url>
        <email></email>
    </author>
    <strip>
        <title>And You Brute? (3.1:77)</title>
        <date>05-13-2008</date>
        <description></description>
        <panels>
            <panel>
                <scene>47</scene>
                <narration>Boss Confronts Caesar</narration>
                <shout>
                    <actor>12</actor>
                    <words>Everyone has agreed Caesar and your work here is done!</words>
                </shout>
                <shout>
                    <actor>22</actor>
                    <words>What hath i done?</words>
                </shout>
            </panel>
            <panel>
                <scene>47</scene>
                <narration>Telling Caesar his time is up!</narration>
                <shout>
                    <actor>12</actor>
                    <words>Your performance in this capitol is low and all the employees voted that you should leave!</words>
                </shout>
                <shout>
                    <actor>22</actor>
                    <words>Et tu, Brute?</words>
                </shout>
            </panel>
            <panel>
                <scene>47</scene>
                <narration>Caesar leaves</narration>
                <speech>
                    <actor>12</actor>
                    <words>Yes</words>
                </speech>
                <speech>
                    <actor>22</actor>
                    <words>Then i shalt leave!</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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