Women in Horror

Women in Horror month is February.

But women continue to write horror, contribute to the genre and struggle to be read all year long. When topics of diversity in table of contents come up, I am always surprised at how few women writers are mentioned, and even fewer are published.

I asked on Facebook for some names of speculative fiction writers, and then went looking on my own. At first this was to expand my own ‘to-read’ lists, and editorial rolodex. But then I asked myself, why was I keeping it to myself? I went and found websites (or tried to, best I could) for each of the names I found, and made a list.

I cannot stress how easy it was to find 400 names. You could fill TOC after TOC with the talent listed below and never once sacrifice anything to do it.

Is this list done? No, not at all. I’m not even done with the writers in my own Facebook friends list. This is a drop in the bucket of women writers.

But MOST importantly: I am just some guy with a website. Inclusion or Exclusion from this list is irrelevant to the legitimacy of any one as writer. This list is here to help spread the word about women horror writers of all types, not as something ‘official’.

I will endeavor to update it, however. I have two more sources to look through already, which will add quite a few names.

Still, know someone who needs to be on this list (maybe even yourself)? Drop a note here or on Twitter, and let me know, and I’ll add them on. Same if I have you on this list, but got the web address wrong.

Women in Horror month is February, but the time to read women horror and speculative writers is all year. And the time to see them as anything less than a full contributing part of the genre has long passed.

So take a look, click a link, go, read a book and see what you are missing. I know I will be.

Women Horror / Speculative Fiction Writers

 

Writers I could not find websites for:

  • Amanda Nethers
  • Anna Haney
  • Erin Coughlin
  • Evangeline Frost
  • K. T. Jane
  • Kimberly Yernia
  • Leigh Rhyne
  • Meg Moore
  • Megan Rhode
  • Sarah Reed
  • Violet Addison
  • Karin Tauscher Fuller
  • Jessie Grayson
  • Nora Younger Azzi
  • Ellen Bolt
  • Sara J. Larson
  • Ann Stapleton
  • Catherine Bader
  • Allison Sutherland
  • Michelle Witte
  • Brie Bahmer

 

You Need a Web Page

Writers, I cannot stress this enough. You need to have an easily found presence on the web. This is NOT a Facebook profile or an Amazon author page. While both of those things are also useful, they do not fulfill the role a webpage does.

but I am just starting out, and don’t have anything to post…

First off, this isn’t a ‘You need a blog!’ post. Blogging is its own thing, and has perks and negatives. This is a ‘You need a web page’ post.

You need a web page.

First, and foremost, I would highly suggest anyone who is writing (or hell, just about anyone) to buy their name URL (like jacobhaddon.com, for example). Even if you don’t use it, this is your name, and it is important.

But even if you don’t want to self host, there are options out there. I would suggested WordPress.com as the best one. WordPress is easy to use, easy to add pages and notes and links, and makes a nice looking site, even if you never use it as a blog. Also, if you do move to your own server, it is very easy to get your data from there to your new site.

They offer a mobile app for updates on the go, and with themes and plugins it is very easy to customize.

Try to pick a name that is professional looking, I recommend your name, jacobhaddon.wordpress.com, but if that is taken, then try something close.

Now, what do you put on it?

At a minimum, you post this:

  • Your Name
  • Your Bio
  • A way to contact you (see note below)
  • Links to your Twitter / Facebook Page / Instagram / etc
  • Links to books for sale you are in / wrote

Once you start getting more things, then make pages for your bio, books, contact, reviews, etc.

This business card like set up means it needs to be updated very rarely, for those who don’t want something else to maintain, but still allows for it to fulfill an important function for you.

Note: do NOT use your regular email as your contact email on a public website. Make an email specifically for this, either under your host (so contact@jacobhaddon.com, for example), or using a free email service, such as Gmail or Yahoo or Outlook, such as ContactJacobHaddon@ (whichever).com

Why? This email will get spammed. Lots. This email will also be available to anyone. By making this email not your normal one you now have the freedom to ditch it when needed. So contact@jacobhaddon.com becomes a spambots favorite friend? I delete it and start up comments@, or findme@ something like that.

What do you not put on it?

  • Ads.
  • Any video or music that autoplays
  • Links to things unrelated to writing

You are looking for something that when an editor is looking into you, they see a professional presentation. This is your calling card.

you . online

Your online presence is now up, and under your control. It is a place for readers, editors, and fellow writers to find you.

Set up a Goodreads profile? Link it here. Amazon author page? Link. Get interviewed on another site? Add that link. Book reviewed? You got it. Make this the place people come to find out you.

Plain Text Story Formatting, Part Two

This is the nerdy one. I talked previously about how I use plain text to write these days, but left the final formatting out of that discussion.

The fact is you can do formatting in this manner as well, you don’t need to copy paste into Word. There are a few things you will need, however: Some basic HTML / CSS knowledge; a program called Pandoc and comfort with the command line; and an app called Marked.

To start, this is Macintosh centric, as that is what I have. Pandoc will work on Windows and Linux too, which is good, as it is very useful. Marked, however, is just for the Mac. While I suspect there are Windows and Linux equivalents, I can’t speak to how they work.

First lets look at Marked and take about what it does. When I write, I used a syntax called markdown. It uses things asterisks to designate italics and bold, pound signs (hashtags…) for headings, etc. It is very simple, and since for the most part the only real thing we use in fiction is italics and possibly headers, there are very few things to remember.

Now, in principle what Marked does is similar to what your browser does when you look at a web site. Websites are just text files as well, but when the browser gets it, it renders it into a webpage. Marked does the same thing with your markdown syntax.

So instead of *this* it looks like this, which is what you wanted.

Now Marked also has a large collection of style sheets. This lets you change how your file will look, and hey, one of them is even standard manuscript format. That’s nice.

With a simple click your story is all formatted, ready to go. Need it changed? Marked comes with 9 pre-set style sheets, and since they are just CSS, making your own (or tweaking what is there) is quite easy.

It isn’t an editor. You will need to still open up your text file in whatever application you were writing in (I may have suggested Byword once or twice…) to change things.

But, for those following along at home, you may have question. When I talked about my story format, I had all of these other sections, like Notes and Characters in my file. What happens to those sections?

The nice part about markdown is that it is open to HTML as well. We will take the “comment” tag from HTML and fix this right up. As you recall, the layout I use looks like this:

Title: (title here)
Author: (my name)

To-Do

Summary

Characters

Locations

Notes

Story

Archive

Now, we will add comment tags, which look like this:

<!--
comments go here
and you can’t see them
-->

Which, when rendered in HTML, looks like this:

(That was a programming joke.)

So, what do we do? We enclose the parts that we don’t want to show in the final version in those comment tags, like this:

<!--
Title: (title here)
Author: (my name)

# To-Do

# Summary

# Characters

# Locations

# Notes

# Story
-->
# Title
## By Me

Once upon a *time*...

~fin~
<!--
# Archive
-->

And, since we don’t show comments, Marked passes over all of that. All we will get is:

Title

By Me

Once upon a time

~fin~

Thus, allowing me to keep all that information where I want it: in the file with the story itself, AND also have a well formatted document. (that other stuff is still there, if you looked at the source code of this post you would see it)

Marked lets you change the CSS if you want, so you can adjust fonts, spacings, indents, etc. Simply export from Marked to quite a few formats, like DOCX, PDF, and RTF

Pandoc

Pandoc provides a more versatile set of tools for those comfortable with the command line. For me, the feature I use the most is converting files into ebooks. Pandoc will convert my mess above into a full epub with a table of contents.

It makes it quite easy to add things as well. So if your file was mystory.txt and you had a bio.txt file of your well crafted biography, you can make an ebook like this:

pandoc -o mystory.epub mystory.txt bio.txt 

Simple, no? The -o tag is for output file name, which is in this case mystory.epub. Pandoc can tell what the file is by the extension, but you can also designate, like this:

pandoc -o mystory.epub  mystory.txt bio.txt -t markdown -s

Now, if you want to be more hands on, you can be. Pandoc lets you change the stylesheets, set a cover, add in the metadata.

You can do something similar with DOCX files. If you make a Word file that is formatted the way you want yours to be, Pandoc will use the same styles for your file. like this:

pandoc -o mystory.docx mystory.txt bio.txt --reference-docx=myotherstory.docx

And now your new mystory.docx file will have the same styles as myotherstory.docx has.

And this is just a drop of what Pandoc can do. If you need a quick powerful tool to convert files, this one is worth looking at.

Why?

Why? why do this? Why not just have piles of Word documents? All of this was spawned from the need to have so many different file formats for one story. The story starts off any way you want, but once complete, you will need an ebook, a PDF, a print version, Kindle one, etc.

And then you find one mistake, and now have to make sure you fix it in all of those.

I’m in the process of incorporating this structure into the creation of LampLight as well, allowing me to format once, and produce four files at the push of a button. (well, a few because I have to type, but still).

It also allows for greater control over the epub output, and mades it easier to spin updates if needed.

But the important part–important to me, that is–is the file format. As plain text, I know those story files can always be opened up. The work done to format, to clean up the files, to make these things will not be lost simply because a new version of some other software comes out.

And that, the future proofing of these files, is worth the extra effort.