So, even though I said I’m done editing FOTS, I’m not. I feel like I should be, but every time I go to read it, I see more things wrong with it. Plus, there is the entire word count problem (I aimed for 100k and got 124k). So, over my lunch breaks I’m editing and working on reducing the word counts.

Before my vacation, I was working on chapters 16-12 (I work backwards a lot). The words were going down, but something didn’t feel right. That night (last Thursday), I realized one thing I was doing wrong. The sentence structure was a bit too consistent in places. In most paragraphs, I had a nice mix of sentences but occassionally I would get a “She did. She did. She did.”

I needed to review them, but in the walls of text, I couldn’t see them easily. Which means one thing… write a program. This is a simple program, so it doesn’t have to be fancy. All I wanted to do was going through every paragraph, split it into sentences, then print out the first five words along with a sentence length.

At the end of each paragraph, I added a sentence count, median length, and the std. deviation. I use the std dev to see if I have a consistent sentence length.

For example, take this paragraph:

She continued until she felt the sharp edge of her anger ebb away. She sniffed and wiped the tears from her face. “miw: I hate him,” she sobbed. Her eyes scanned the empty forest, half expecting to see Pahim chasing after her. She knew that she needed him, at least to get back to the Boar Hunt Inn. Maybe Falkin would put her up for the night.

In the middle of the document, this one was hard to pick up at first. When run through the program, I get this output:

From here, I can see that I had three sentences that all start with “She” and a past-tense verb. It makes it a lot easier to notice a pattern, at least with the beginning of sentences.

Likewise, in a different chapter, I have this:

There are three sentences in the paragraph and all of them have the same length. This is shown by the small standard deviation. I’m okay with this specific case, but it at least points out that there might be something to pay attention to.

Not sure if it will help in the long run, but at least it gives me an idea of where to focus on this part of the editing.

And here is the Perl program I used to generate this. I just pass in the chapter into the program and get the output.

So, if anyone is having trouble with unvarying sentence structure, this might help you focus on the paragraphs that need the most work.