Add parts 3-4. Ready to begin cleanup.

This commit is contained in:
cruft 2009-07-09 10:06:35 -06:00
parent 4e1fa0174d
commit 81359f325f
7 changed files with 12970 additions and 107 deletions

View File

@ -1,4 +1,4 @@
PAGES = page*.tex
PAGES = part*.tex
horrors2.dvi: horrors2.ltx $(PAGES)
latex $<

View File

@ -1,7 +1,7 @@
\documentclass{book}
%\usepackage[T1]{fontenc}
%\usepackage{anttor}
\usepackage[T1]{fontenc}
\usepackage{anttor}
%\usepackage{tgothic}
\title{Horrors 2: Bavarious Reasons}
@ -13,16 +13,16 @@
\tableofcontents
\part{Bavarious Reasons}
\include{page1}
\include{part1}
\part{You're no Hakan}
%\include{page2}
\include{part2}
\part{The Chronicles Of Biddick}
%\include{page3}
\include{part3}
\part{My God, It's Full Of Stars}
%\include{page4}
\include{part4}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

View File

@ -1,82 +1,8 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\by{ AYBraham}
{\em artwork by Discount_Bees}
As referred to in the epic Horrors by Ben Biddick thread,
this thread is to serve as a Creative Writing contest for all
goons.
Your goal: Write a short story in the theme of Horrors, the
collection of short stories written by Mr. Ben Beddick when he was
13 years old. Each story is encouraged to feature the tragic
protagonist Luke Bavarius, and must be more than 500 words each.
Each story must show that ``kids need to be respected and listened
to.''
Your Judge: Mr. Ben Biddick himself. He's
currently serving overseas in the Military, so the entries will be
judged at his convenience.
Prizes:
First Place: Full account upgrades (Platinum, No Ads, Archives, and
an Avatar Upgrade), a coupon to change any other user's avatar,
{\bf and an autographed copy of Horrors.}
Second Place: Full account upgrades (Platinum, No Ads, Archives,
and an Avatar Upgrade).
Third Place: One account upgrade of the winner's choice (Plat, No
Ads, Archives, or an Avatar Upgrade).
In addition, if Ben so chooses, the worst entry will subjected to a
very, very malicious account name change &amp; avatar change that
can never be changed so as long as you are on the forums, unless I
so deem it acceptable.
Contest ends July 6th, 2009. Take your time with the entries.
Commence with the brutality!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\by{Mr. Bad Guy}
Gonna deliver some pain at 55mph up in this bitch.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{The Stranger. Bavarious.}
\by{Batmanuel}
{\bf The Stranger. Bavarious.}
{\bf FOR MATURE READERS ONLY}
@ -324,10 +250,10 @@ his hat and left. I remember seeing lights.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{Brian}
\by{Torgo!}
{\bf Brian}
@ -435,24 +361,10 @@ creature then bit Brian on the face and the transformation began.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\by{Mincher}
This thread is too hot to handle!
Good luck to all you goons going hard at it.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{The Horrid Assignment}
\by{Dr. Mulholland}
{\bf The Horrid Assignment}
@ -2978,11 +2890,11 @@ PIZZA HUT
&gt;DIRECTORIES
DIRECTORIES
&gt;INFO HOTLINE}
INFO HOTLINE}

5298
part2.tex Normal file

File diff suppressed because it is too large Load Diff

4639
part3.tex Normal file

File diff suppressed because it is too large Load Diff

3015
part4.tex Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,6 @@
#! /usr/bin/python3
#! /usr/bin/env python3
import optparse
import xml.dom.minidom
import xml.etree.ElementTree
import re
@ -59,16 +58,16 @@ def main():
f = open(a, encoding='iso-8859-1')
parser = xml.etree.ElementTree.XMLTreeBuilder()
parser.entity.update(nbsp=" ",
rsaquo=">",
lsquo="`",
rsquo="'",
ldquo="``",
rdquo="''",
lsaquo="<", rsaquo=">",
lsquo="`", rsquo="'",
ldquo="``", rdquo="''",
hellip="{\\ldots}",
ndash="---",
mdash="---",
iexcl="{\\!`}",
copy="{\\copyright}",
eacute="\\'e",
ccedil="\\,c",
)
doc = xml.etree.ElementTree.parse(f, parser)
doc_to_ltx(doc)