Practicing what we preach

In the spirit of our philosophy of making it easy on the customer (well, actually, it was because our shopping cart software got upgraded to do what we wanted it to do), we’re making it even easier for you to purchase The Proviso. We can now offer the 8 e-book file formats individually, for $5.99 each. Yeah, we know times are tough, but geez, an epic novel for six bucks. That’s hours and hours of entertainment. Can’t beat that. We still offer the .zip file with all 8 formats as well as the trade paperback (free shipping!), but now you can get the one you need for a lower price! Just click on the BUY NOW button on the left sidebar underneath The Bewbies.

And don’t forget! For those of you who’ve read the book and would like to know more about those wacky kids (or you’d like to know where the Dunham series is headed next), you can find a whole slew of stuff at theproviso.com. More content. More entertainment. For free.

Creating e-books: Gather your “materials”

I want to make something very clear. What I’m doing is giving you the tools to create e-books from scratch with very little money and not a lot of automation. There’s a reason for this: When you learn it this way, you learn principles you can carry with you to other projects. If you’re expecting oh golly gee whiz bang flashy stuff, this ain’t it. It’s just the nitty gritty. Now, it is a time suck, but hopefully, if you’re inclined toward DIY and you want to know how things work, you might have fun. In fact, I want you to have fun.

I. PRELIMINARIES

For the purposes of this series, I’m going to demonstrate using a short companion vignette to The Proviso called “July 14, 2001.”

A. COVER ART AND ANY GLYPHS

I’ve assumed you’ve formatted your cover art for use on a 6″ x 9″ trade paperback. At 300 dpi (as per Lightning Source’s specifications), that’s 1800 x 2700 pixels. I suggest you do everything to Lightning Source’s specifications because if you eventually want to go into paper, you will be used to them.proviso-cover-directory

I have several different sizes and formats of the cover art for The Proviso for many different purposes. One includes a grayscale .png file for the IMP format that is 290 x 435 because that’s the most comfortable size my eBookWise device allows. Most of the software we’ll be using will allow you to use your biggest size and will re-size it for you.

If you use glyphs (e.g., a publisher or imprint logo), they should be simple, small, grayscale, and in the .png format.

B. FRONT MATTER

1. Title Page

2. Copyright notices

3. Table of Contents (if the work is long enough).

4. Any acknowledgments or specialty items necessary for understanding the story (e.g., family tree, maps, provisos [heh]).

C. TEXT

D. BACK MATTER

.
.
II. PREPARE YOUR TEXT

I’m going to assume you’re working from a Word document. You should work from your final manuscript (with minimal or no styles applied). Do not work from your typeset-with-styles document that you will use for your PDF format.save-as-html1

A. SELECT “Save As…” THEN CHOOSE “web page (.htm; .html).”

B. OPEN THE HTML DOCUMENT YOU JUST SAVED USING WORDPAD OR NOTEPAD.

C. STRIP ALL OF WORD’S MARKUP.

dirty-clean3

There will be scads of lines of it at the top and some along the bottom. Take it all out. You should have nothing left except straight text with <p></p> tags.

D. BUILD THE SKELETON OF THE HTML FILE:

<!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01//EN”>
<html>
<head>
<title>…</title>

<style type=“text/css”>

INSERT YOUR CSS STYLE SHEET HERE
OR
LINK TO YOUR CSS STYLE SHEET HERE

</style>

</head>

<body>

INSERT YOUR CLEANLY MARKED-UP TEXT HERE

</body>

</html>

E. BUILD YOUR CSS (CASCADING STYLE SHEET).

You should have learned how to do this elsewhere.

NOTE: In my opinion, these are the things you should include in your styles:

1. Left AND right justify your text.
2. Put a fraction of a line space between each paragraph if you wish. In e-book reading, I find this desirable, but others may disagree.
3. Indent your paragraphs. I find this desirable no matter what.
4. Make sure your left and right margins don’t go to the absolute edge of the device’s screen.

F. MAKE IT PRETTY.

You don’t have to, but I think it means something to the reader, which is that you care. You care about your work and you care about the reader. You care about how the reader sees your work. They may not notice or they may, but you will know you did everything you could as professionally as you could.

So if this is important to you, do it. Use the HTML entity or ISO Latin-1 code for curly quotes and apostrophes, accented letters, em dashes instead of double hyphens. Find-and-replace will automate the process somewhat. Always use the ASCII codes instead of depending on the visual in WordPad; it won’t translate to Notepad if you care to use that as your editor. For an ellipses, use 3 periods with spaces between them. Do not use the ASCII or 3 periods run together. (You should probably just get into the habit of doing this in your manuscript.)

Left double quote: &ldquo;
Right double quote: &rdquo;
Left single quote: &lsquo;
Right single quote (apostrophe): &rsquo;

Em dash: &mdash;

G. CHECK AND DOUBLE CHECK YOUR ITALICS AND BOLDS.

Find any other specialty tags you used (e.g., double underline, strikethrough, etc.).

H. ADD IN YOUR FRONT MATTER AND BACK MATTER.

Mark it up as you wish to make it pretty, too.

I. HAVE FUN.

Experiment. Try different things to make it as pleasing to your eye as possible. It won’t be possible for you to make it pleasing to everyone, but have fun in the trying.

.
.
III. REFINE

A. PAGINATE

I say that tongue-in-cheek because, as I’ve already discussed, there is no such thing as a page in an e-book. But for the purposes of this discussion, there is such a thing as front matter breaks, chapter breaks, and back matter breaks and I firmly believe they need to be separated and not run together.

You’ll need this tag:

<p style=“page-break-before: always”>

Live it, learn it, love it.

B. BUILD YOUR TABLE OF CONTENTS

If you have a novella or short story, don’t worry about this. If you have a doorstopper, do this. Unquestionably.

You’ll need these tags:

table: <a href=“#MARKER NAME”></a>

reference: <a name=“MARKER NAME”></a>

C. INSERT HEADERS AND FOOTERS.

If your device/reading software needs that done manually. My eBookWise does and I like it.

You’ll need these tags:

<!– HEADER –>

<header>
<table border=“0” width=“100%”>
<tr>
<td align=“left”>TITLE</td>
<td align=“right”>AUTHOR</td>
</tr>
</table>
<hr>
</header>

<!– FOOTER –>

<footer>
<table border=“0” width=“100%”>
<hr>
<tr>
<td align=“center”>PUBLISHER</td>
</tr>
</table>
</footer>

IV. CHECK IT OVER

What you should have when you’re finished is a cleanly marked-up HTML document ready to put through the eBook Publisher to create an IMP file (OEB container). Open it up in your browser. Look for formatting mistakes.

We’re going to start with the IMP (eBook Publisher) because this program has a compiler that will catch a lot of your markup errors and will help you create an even cleaner HTML document for the construction of the rest of your formats.

Creating e-books: The easy way

I AM AGAINST DIGITAL RIGHTS MANAGEMENT (DRM). ANY VENDOR I RECOMMEND WILL SHARE THIS STANCE AND ANY INSTRUCTIONS I GIVE WILL IGNORE ANY POSSIBILITY FOR ENCRYPTION. IF YOU WANT TO LOCK UP YOUR WORK, FIGURE IT OUT YOURSELF.

In my last episode, I instructed you to go learn (X)HTML/CSS. I was gently taken to task for that with the point, “writers shouldn’t have to learn code.” While I am of the opinion that for some writers, this is not only true, but that they should be kept from any computer interaction whatsoever, I’m afraid it’s just not realistic in the long run. You will learn something, even if it’s only the paragraph tags and all of it will be useful to you at some point.

Yes, you can use blogger.com or wordpress.com or any other sign-in platform for your blogging.

Yes, you can use Word and PrimoPDF to set type and distribute your work as a free PDF.

If you want to:

A. want to offer more than one file format (PDF) and/or

B. want to charge for your work

you’re going to have to either pay someone to do it for you or learn how to do it yourself.

There are quite a few places that will help you with #A.

FEEDBOOKS. As far as I can tell, if you use this service, you must offer your work for free. If this is not acceptable to you, just don’t use their service. (And if this isn’t true, let me know because I scoured the site and couldn’t find any “payment” type information. ) Also, you must manually build your book. Now, this has its pros and cons. The con is that it takes a while. The pro is that you can make it look purty with a little care and attention without having to learn much (if any) (X)HTML/CSS.

BOOKWORM. This is a peculiar service in that you may upload your own book, but the only format you get is the EPUB format. It is also more for reading than publishing (as far as I can tell; more information on this is welcome).

SMASHWORDS. This is the Q-DOS of e-book building/formatting. It’s very quick. And yeah, sometimes it’s dirty, especially if you don’t format your Word document correctly (as in, according to standard word processing practices and to SmashWords’s style guide). That’s the con. The pro is it’s fast and you can charge for your work.

I’m making several assumptions here. The FIRST assumption is that you want your book to be in as many electronic formats as possible. The SECOND assumption is that you want to have those formats available to you on your own hard drive for dissemination as you please. The THIRD assumption is that you want your work to have widespread visibility across the interwebz. The FOURTH assumption is that you might want to get paid for your work.

So let’s talk about SmashWords.

I heard about SmashWords from Eugene Woodbury quite a while back, who used it for his novel Path of Dreams, but I dismissed it because I thought the work had to be offered free. Then Zoe Winters used it for her free novella “Kept.” Okay. But then Aaron Ross Powell used it to offer his draft of The Hole in more formats than Kindle right after I bitched about it. Then RJ Keller used it to offer Waiting for Spring, and that’s when I had the V-8 moment.

I figured, well, what the hell, I’ll try this thing. So I took a vignette from The Proviso‘s world (not in the book) called “25 to Life” and decided to put it on Smashwords.

CAVEAT: “25 to Life” did not call for fancy formatting like The Proviso does. The Proviso has blog posts, e-mails, news clippings, court transcripts, social services records, a wedding announcement, and other specialized formatting that required different fonts, spacing, and margins to make those items look good. If you have something like that, this WILL NOT WORK for you.

Assumption 1. That you want your book to be in as many electronic formats as possible.

They have this nifty little API they call the “MeatGrinder.” It will turn a plain, properly formatted Word document into any one or more of the following digital formats:

Format Full Book
Online Reading (HTML) View
Online Reading (JavaScript) View
Kindle (.mobi) Download
Epub (open industry format, good for Stanza reader, others) Download
PDF (good for highly formatted books, or for home printing) Download
RTF (readable on most word processors) Download
LRF (for Sony Reader) Download
Palm Doc (PDB) (for Palm reading devices) Download
Plain Text (download) (flexible, but lacks much formatting) Download
Plain Text (view) (viewable as web page) View

.

As you can see, that’s a lot of variation. I got both The Hole and Waiting for Spring in the RTF format, as that was the easiest for me to convert to my eBookWise reader. Powell asked for $2.99 and Keller offered hers for “you set the price.”

Assumption 2. That you want to have those formats available to you on your own hard drive for dissemination as you please.

I don’t even know if you have to buy it yourself (if you set a price) to download which formats you want to offer from your own site or elsewhere, but even if you do have to, you got off cheap in both time and money.

Don’t be an ass. Be courteous and leave it up on SmashWords. They did the work for you.

You will NOT be able to get a straight HTML document to download and then tweak to other formats, which is good.

Assumption 3. That you want your work to have widespread visibility across the interwebz.

The founder of SmashWords, Mark Coker, says: “Our mission is to give every author a chance to find their audience.”

SmashWords is gradually gaining in name recognition and usage. Augment your presence on SmashWords with placement of your work elsewhere on the ’net. It benefits you and SmashWords (you know, the people who did the work for you).

Assumption 4. You might want to get paid for your work.

There are several payment options at SmashWords, which I’ve addressed. In my first “creating ebooks” post, commenter and indie author champion Morris Rosenthal told me about e-junkie.com, which is a payment portal for downloads. He’s had quite a bit of success with this method, though I can’t vouch for it at this time (although I do intend to check it out).

However, as far as I know, SmashWords is the only independent e-publishing vendor that offers an API process AND a payment portal and quite frankly, there’s just nothing else that beats that, even if you do have to sacrifice a little formatting.

So after having put “25 to Life” up on SmashWords, used their API, seen their output, what do I think?

The HTML and Java versions (the ones that you read on your computer) are very pretty and you can adjust fonts, colors, and sizes as you like.

The plain TXT ones are, well, plain text. It says “may lack some formatting,” but if you know anything about plain text, you know that means NO formatting.

The EPUB (use with Stanza for iPhone/iTouch, Adobe Digital Editions) format doesn’t seem to have centered anything, but I can live with that.

The LRF (Sony) and PDB (Palm) didn’t pick up the italics, which is something I CAN’T live with, but it’s being worked on right now (no promises!).

The PDF looked like a manuscript because, well, it comes from a plain Word document, so you know that going in.

The MOBI/PRC (Kindle, MobiPocket) looked great.

The RTF is obviously going to look just like a Word document, and it’s my go-to for conversion to IMP (eBookWise), so I don’t care how it looks.

If you follow the SmashWords style guide to the letter, you’ll have a slew of decent-looking e-books (including EPUB!) as defined by my last post on “the page” and you’ll get them in about 3 minutes, along with a payment portal.

SmashWords is an elegant little API, and it’s still in beta testing. I can’t wait to see what it’ll be at full force.