Styling and coding the first bit of a chapter or section is part of what signals to a reader that a new section has begun. We’ve been trained as readers to this for years by print books. Now I’ll show you how to do it in an ebook.
Just like a cover, the formatting of your novel should reflect your novel. The style you choose should match your writing style, genre, and story. For example, a few writers start every chapter with one attention-getting sentence, rather short, that is its own paragraph. The formatting should reflect this set-apart sentence. Another example: A hard-core military thriller might use small caps instead of italics, while a Victorian romance would probably be the opposite.
If the length of your chapters’ first sentences tends to vary widely, you probably want to apply your first-line formatting to a set number of words, rather than the whole first sentence.
Whatever method you choose, it should be uniformly applied to all chapters and new sections throughout the book.
Also note that people often use several of these techniques, rather than just choosing one. For example, you can italicize the first five words after a drop cap image. Again, check out “Kindle Formatting for Novels III: Design Ideas” for inspiration.
No Indent
The first paragraph should have no indentation at both the beginning of a chapter and the beginning of a new section within a chapter organizes the text to the eye. This is the second bit of formatting that is one of my must-haves. I’m no typography expert, but this hasn’t been a mainstay of book formatting for decades for no reason.
In the style code, I also put a margin at the top, to push the beginning of the chapter down from the chapter heading. This margin will also push down the beginning of the paragraph of the new section.
The Kindle indents by default, so you have to manually set it not to indent. In the style section, as I posted in the previous installment, “Kindle Formatting for Novels V: Coding the Chapter Headings,” put the following line:
p.noindent { text-indent:0; margin-top:60;}
When you start a new chapter or new section within a chapter, change the <p> to <p class=“noindent”>.
Styling the First Sentence
If you look at print books, and most ebooks these days, you’ll notice that the first sentence of each chapter and section is styled a certain way. Below are some of the options that transfer well to the Kindle.
Small Caps
Small caps is my favorite, but it’s also time-consuming. Usually it’s done to either the first four or five words in the chapter, and the number of words small-capped is the same throughout the book. Note that if you have a capital letter within the small-capped section, you will have to make sure it is outside the small tags. If you apply this style, your code will look like this:
<p class="noindent">H<small><small>ERE</small></small> N<small><small>ATASHA USES SMALL CAPS</small></small> for the first five letters.</p>
Italics
Italics are the easiest and quickest style to apply, since you only need to wrap the words with the <i></i> tags. I’ve seen this applied to the first sentence, but if the length of your first sentences varies greatly, choosing a specific number of words gives your chapter a more uniform and polished finish. Often I see this styling in combination with a drop cap or up cap.
Here’s the code:
<p class="noindent"><i>Here Natasha uses italics for the first sentence.</i></p>
And here is the outcome on the Kindle:
You can also apply bold with <b></b> tags, but this is usually done when combined with other styling.
Up Cap Images
“Drop” caps are done by inserting images into the text. Unfortunately, no formatting code is supported that will actually make these letters drop, so you’re forced to make them go up. (Frustrating, I know.)
You will need to upload your image to the same folder where you have saved the .html file of your novel.
<p class="noindent"><img src="hcap.gif" alt="H" align="left" />ere Natasha applies a drop cap to the first letter.</p>
Up Caps with Text only
Up caps can be done without images as a quick (and dirty) way to start a chapter or section. Especially when used alone, I think it appears a bit lazy and inelegant, but that’s just my opinion. Sometimes they add bold and/or italics to this letter.
<p class="noindent"><big><b>H</b></big>ere Natasha uses an up cap with bold formatting.</p>

Remember that you don’t need to pick one of these methods. You can mix them up to create your own style. Beware of going gaudy though; simple and elegant is always easier to read.
Next Installment
Next we’ll talk about images! Fun, fun!
Any questions? Anything I can do to make this better? Anything I left out?