Other Comic Books
Alternative comics present an alternative to the "mainstream" comics which dominate the US comic book industry (such as the superhero-themed products of Marvel and DC comic companies). Those comics are typically produced by a team of workers operating on tight deadlines: a writer, a penciler, an inker, a letterer, a colorist, and an editor. The subject matter and style of "mainstream" comics is in large part dictated by their publisher, who hires the personnel to produce the comics according to well established conventions of a genre. By contrast, alternative comics are often independently authored and drawn by a single creator and they are published when deemed complete by the author, with little regard for regular distribution schedules. Where the content of "mainstream" comics is influenced by corporate managers attempting to maximize sales, "alternative" comics are often published in small numbers for specialized audiences, which allows for the publication of material that many in a more general readership would likely find obscure or offensive. In all of these ways, "alternative" comics build directly on the precedent set by underground comix.
while ($myrow = mysql_fetch_row($series)) {
echo("$myrow[0]");
echo("\n\n");
$classic = mysql_query("
SELECT
item.title,
item.filename,
author.firstName,
author.lastName
FROM
library_item as item,
library_author as author
WHERE
item.subgenreID = 42 AND
item.authorID = author.authorID AND
item.seriesID = $myrow[1]
ORDER BY
item.seriesNumber ASC,
item.title ASC
");
while ($myrow = mysql_fetch_row($classic)) {
echo("\t- $myrow[0] [$myrow[2] $myrow[3]]
\n");
}
echo(" \n\n");
}
?>
|