<?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>Luminous</authorname>
        <url>http://www.wittycomics.com/users/Luminous</url>
        <email></email>
    </author>
    <strip>
        <title>Quotations Theater ~ Terceiro</title>
        <date>05-24-2006</date>
        <description></description>
        <panels>
            <panel>
                <scene>35</scene>
                <narration>Facts are stubborn things; and whatever may be our wishes, our inclinations, or the dictates of our passion, they cannot alter the state of facts and evidence.  - John Adams  </narration>
                <speech>
                    <actor>56</actor>
                    <words>And the evidence leads me to the inevitable conclusion that... the end results of this lesbian wedding will not produce any heirs any time soon!</words>
                </speech>
                <speech>
                    <actor>34</actor>
                    <words>I'll drink to that!  Who wants the pain of child delivery labor anyway?</words>
                </speech>
            </panel>
            <panel>
                <scene>6</scene>
                <narration>There can be no happiness if the things we believe in are different from the things we do.  - Freya Madeline Stark</narration>
                <speech>
                    <actor>19</actor>
                    <words>The company stock is plummeting... share holders are all deserting us or threatening our well-being... the end is on the horizon!</words>
                </speech>
                <speech>
                    <actor>35</actor>
                    <words>I remain happy and blissful though - for all the crooked things I did with company funds and stocks are EXACTLY what I believe in with all of my wicked heart and soul!</words>
                </speech>
            </panel>
            <panel>
                <scene>33</scene>
                <narration>To win without risk is to triumph without glory.  - Pierre Corneille</narration>
                <speech>
                    <actor>32</actor>
                    <words>We played it safe - we cater only to the wealthy and obese' discerning tastes!</words>
                </speech>
                <speech>
                    <actor>33</actor>
                    <words>And we cater to the unhealthy lowest common denominator!</words>
                </speech>
            </panel>
        </panels>
    </strip>
</comic>

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