Showing posts with label Formatting. Show all posts
Showing posts with label Formatting. Show all posts

Thursday, March 15, 2012

Formatting Secrets for Kindle and Nook EBooks


Formatting an eBook for use on a web site or for sending by email using the PDF file format is relatively easy. Most popular word processors and page design programs can export to the PDF file format and those exports usually accurately render the PDF to match the original created in Word, InDesign, or whatever. Formatting for the Amazon Kindle or Barnes & Nook is a completely different proposition. Some programs like InDesign have plug-ins that supposedly save to the eBook format, but these are notoriously inaccurate. So exactly how do you properly, and easily, format a file for Kindle or Nook?

The Kindle format and also the Nook format are based on HTML, so the obvious answer to the previous question is to do your formatting in HTML. Most word processors and page layout programs can save to HTML, so that is the first step. Then open the file in your favorite HTML editor, I like using Dreamweaver but all of these techniques are done at the code view so any standard HTML editor will work. You can even use a plain text editor like Windows Notepad if you like. The Kindle Fire can take some HTML 5 coding with CSS3, but we will be sticking with more basic formatting in this discussion.

What we want is basic HTML, with all excessive formatting removed. If you are formatting for the Kindle and there is a cover image, remove it. Kindle works best if you upload the cover image separately from the eBook file. In the Nook you can leave it attached. For a professional look you want to start the actual eBook with a Title Page, followed by a Copyright Page. You only need basic information on the Title Page, first of course the title of the eBook as text, don't use a picture for the title, keep it text. You can follow this by a smaller picture similar to the cover of the book if you like, but don't put a small image of the cover here. That just looks unprofessional. What I frequently do is to use the same art as the cover if it is interesting enough but without the text.

The copyright page can contain a lot of information but the most important part is a properly formatted copyright. This is in the form of "copyright date name", here is an example: copyright 2012 George Peirson. You can replace copyright with the copyright symbol if you like. One more thing the copyright holder has to be either an individual or corporation (which are individuals as far as the US Government is concerned). Aside from corporations, companies cannot own copyrights. So either a person's name, or a corporation name, no business names, no doing business as, no partnerships, etc.

Next you will have your table of contents, followed by the rest of the book. We will now look at more specific HTML level formatting techniques.

Start by cleaning out all of the extraneous coding, span tags, any font tags or CSS styling, etc. Leave in paragraph tags or div tags as needed, but pretty much take everything else out. We basically want to start from scratch and keep the formatting to a minimum for the widest compatibility. If you use a program like Dreamweaver you can use the Find and Replace function to speed up this task. Lets say that you have paragraph tags with some formatting in them like this [p class="bodytext"], instead of looking through all of your code and removing each instance of [class="bodytext"], instead do a search for [p class="bodytext"] and replace with [p]. Also remove any span tags and don't forget to remove the closing tags as well, [/span]

We will next put in page breaks as needed, normally you would want each new chapter to start at the top of its own page, and of course the Title Page should be on one page and the Copyright Page should have its own page as well. To start a page at the top of the page on Kindle put in a page break in the code. Make sure you use a page break after the Title Page, after the Copyright page, after the Table of Contents, to give the eBook a professional look. The page break tag goes at the top of the new page in the code view, for instance at the beginning of each chapter before you start any text on that page. Here is the tag to use, this is a special tag that you will not find in normal HTML: [mbp:pagebreak /]. Just put it on its own line inside of tag symbols in the code at the beginning of each new chapter.

Now for some basic paragraph formatting. Of course you will be putting your paragraphs in paragraph tags, [p] paragraph text goes here [/p]. You can put in basic paragraph attributes into the opening paragraph tag, the most commonly used one is the align attribute. Simple to use, it goes like this:

[p align="left"] for left alignment,

[p align="center"] for center alignment

[p align="right"] for right alignment

Another attribute is align="justify" to force full justification, but eBooks fully justify by default so you can ignore this one.

The paragraph tag will leave a blank line between paragraphs, if you want your paragraphs to be continuous without blank lines then use a break tag instead, [br /]. Put one of these at the end of each paragraph break in your text and then begin the next line (no opening paragraph tag). To put a space between paragraphs use multiple break tags.

When you bump paragraphs together like this you will need a larger indent on the first line to easily spot the beginning of each paragraph, you can create the indent by using non-breaking spaces, here is the code "&" followed by "nbsp", you can put as many as you need, each one is a single space. I have found that 5-9 of these at the beginning of a paragraph gives a nice looking indent. You can use spacing attributes in the opening paragraph tag for indenting the first line, but it is not as reliable as the non-breaking space, so I stick with that in most cases.

You can indent the text on the left and right by using Block Quotes, basically adding margins to the page. Be aware though that on the earlier Black & White Kindles the right margin may be ignored.

[blockquote] text [/blockquote]

You can put several paragraphs between one set of block quotes, and you can double up or triple up on the blockquotes to add larger margins, useful for poems and such.

Put in Bold and Italics as needed using standard tags, b for bold and i for italics

You can also use the different H tags for sizing your text, although I have found that only the larger H tag numbers work reliably. [h1] title text [/h1], [h2] not as large [/h2], etc. The H tags go from 1 to 6 but I have found that only h1 through h3 work reliably on all devices. So these are good for titles, page headings, and such.

Use H tags to size title and other large text like this:

[h1] title of eBook [/h1]

[h2] subtitle of eBook [/h2]

[h2] chapter titles [/h2]

You can put in alignment attributes into H tags, like this: [h1 align="center"].

Next position and format your images. I recommend sticking with left, right, or center alignment and keep your images on the smaller size. If the image is too large it will be resized by the eBook reader to fit the page and you will have one big image with no text. This is one spot where you may want to do some testing to get just the right size depending on your needs.

Once the basic formatting is in place you can set up the Table of Contents. Use anchor tags to create links for a Table of Contents. If you do this right after the title page and name it Table of Contents Kindle will know what it is and use this list for the Kindle TOC at the end of the book.

An Anchor tag looks like this: [a name="11" id="11"] (inside of tag symbols of course)

Place this at the top of each chapter, after the page break tag we included previously. You can name the anchor tags anything you want, but I find it easy to just number them. The example above is for chapter 11.

Now go up to your Table of Contents page and use standard links on that text to link back to your anchor tags. Here is how the link for chapter 11 looks in the TOC.

[a href="#11"] Chapter 11[/a] (again with the correct tag symbols surrounding the tag)

You can name your chapter anchor tags anything you like, maybe you have a collection of short stories and your Table of Contents lists the story titles instead of chapters, this is fine. But if you use the word Chapter in the Table of Contents Kindle will ignore any other links on that page when making the Kindle Table of Contents (in the Kindle controls and at the end of the eBook). So if you have this:

Forward

Chapter 1

Chapter 2

Epilogue

The Kindle will only use:

Chapter 1

Chapter 2

In your eBook's Table of Contents, of course your TOC with all of your anchor tags will work correctly, but if someone uses the TOC control in Kindle they will not see the Forward or Epilogue links in this example. This does not happen if you don't use the word Chapter. I am not sure why this is so and I discovered this by accident, but after a lot of testing it seems to be consistent. So either use all Chapters (chapter 1 - Forward, chapter 2, chapter 3, chapter 4 - Epilogue) or don't use the word Chapter in the TOC.

You can use standard links in the text and at the end of the book for links to web pages, etc. These will work fine, but to be safe keep any external links off of the Table of Contents page. If you want a list of links at the front of the book put them on their own page after the TOC.

One more tip on designing your book, make sure you have a good Forward or First Chapter. Amazon previews the first 10% of the book in their Look Inside tool in their Kindle Store, so you want the first 10% to grab the attention of the reader so that they will buy your book. Don't fill the front of the book with advertising, save that for the end, and don't put a bunch of pictures at the front of the book as well. Make sure you have some quality text in the first 10% to maximize your exposure and sales.

This will take care of almost all of your formatting needs and make your book easily convertible to both the Kindle and Nook platforms. You can get a lot fancier if you need to, but this really is most of the formatting that most books use.

You should do a lot of testing to make sure that your formatting works, I recommend using a program named Calibre to convert your HTML to the MOBI format for the Kindle and the ePUB format for use on the Nook. You should use either the computer version of the Kindle Reader and the Nook Reader to check the formatting after conversion, or better still use an actual Kindle or Nook. Don't rely on the Reader in Calibre as it is not accurate. One more tip, I have found that if I need to change or fix the formatting I need to remove the eBook from the Kindle Reader and also remove the eBook from Calibre, then re-import the fixed HTML back into Calibre, re-convert to MOBI or ePUB, and re-install in the Reader, otherwise I have found that the changes don't always take.




George Peirson is a successful Entrepreneur and Internet Trainer. He is the author of over 60 multimedia based tutorial training titles covering such topics as Photoshop, Flash and Dreamweaver. To see his training sets visit http://www.howtogurus.com Article copyright 2012 George Peirson




Tuesday, January 31, 2012

Kindle Formatting: Requirements for the Kindle Book Cover Image


You have prepared your manuscript and are ready to e-publish. Now you need to know how to prepare your book images and upload your Kindle book cover to the Amazon Kindle Direct Publishing system. There are two covers you will need: the Product Cover and the Internal eBook Cover. The best file format is JPG, which is acceptable for publishing both the product and internal cover image.

NOTE: I will be talking about the Product display and internal cover only. (not book covers for print)

Formatting Images Inside Your Kindle Book

Kindle Direct Publishing will convert your images and text for upload to the Amazon Kindle Store as well as display on Kindles and other supported devices. Kindle Direct Publishing can process your book covers in the following formats:


GIF (or.gif)
PNG (or.png)
BMP (or.bmp)
JPEG (or.jpeg)

NOTE: Images will appear in color ONLY on the Kindle Fire device. All other Kindle devices will display black and white.

Internal Book Cover

The best formats to use for the internal Kindle e-book cover is a JPG or GIF image, 127 KB* size at 300 dpi. This will provide enough clarity for images, particularly for large images, or content with gradient patterns. But you also don't want the e-book file size to become too large.

*Amazon recommends a 127K size for book covers. "The largest element of almost any Kindle book will be the image content. Inside your book file, the Kindle book format supports JPEG and GIF images up to 127KB in size. Images that are in other formats supported for upload to KDP (such as BMP or PNG), or that exceed this file size requirement, will be automatically recompressed as JPEG files during the conversion process. Optimizing your images to fit these requirements before uploading to KDP will help decrease the size of your uploaded file. It will also reduce the chance of encountering difficulties in conversion due to large file size." HOWEVER once the reader has purchased your e-book, the Internal ebook cover is a moot point -- they may go and look at your e-book cover, but most do not.

Image Processing

If you choose to upload your Word (.doc) file, and you have embedded images in your content, Kindle Direct Publishing automatically extracts images from the content and replaces them with an HTML img tag. This process converts each image to a separate image file, which becomes a part of your content's publication package (MOBI)

Note: Images do not display accurately when you preview an uploaded file. For instance, larger images may resize or rotate when previewed. If your book has a lot of images, it can be viewed in color by the Kindle Fire or by readers using our free Kindle apps for PC, Mac, iPad, iPhone, Android, and Windows 7 devices. Otherwise, remember that images on Kindle (with the exception of the Fire) are displayed in 16 shades of gray for great contrast and clarity.

The Product Display Book Cover

The product display cover is the image that resides on the virtual bookshelf in the Amazon Kindle Store. It must be 72 dpi and I recommend a JPG file. I commonly create the product cover from the 600 x 800 Internal book cover. The product image needs to be crisp, sharp, and does not need to be any larger the 127K, however, Kindle Direct Publishing accepts two types of files for product display cover images:


JPEG, or.jpeg
TIFF, or.tif(f)

KDP applies additional compression to images when displaying them on its website. For best results, images should be uploaded with minimal compression.

Dimensions

I have found the best size to create your cover is 600 x 800 pixels. This is slightly more square than an 6 x 9 inch book cover. In addition, the product cover is displayed on the Web, so the resolution only needs to be 72 dpi for optimal viewing.

Requirements for the size of your cover art:


Image dimensions of at least 500 by 800 pixels -- 600 x 800 pixels produces a full screen cover image.
Do not make your image any larger than 2000 pixels on the longest side.
Save at 72 dots per inch (dpi) for optimal viewing on the web.

Use Color

Color attracts attention so use color images whenever possible and relevant. The Kindle Fire offer exceptional color clarity, so use color images in your e-book. Although the other Kindle reading devices have a black and white screen, Amazon has Kindle apps for other devices, such as iPhone or PC, which takes advantage of color fonts and images. All images on the Web display using RGB (red, green, blue) color mode, which is the color mode native to the Web and many color screen displays. Combinations of these three colors at varying levels of intensity create over 16 million colors.

Borders for White Cover Art

Cover art with white or very light backgrounds will disappear against the Amazon Kindle Store white background. Adding a very narrow (3-4 pixel) border in medium gray to the Product Book cover Image will define the boundaries of the cover.

Uploading Your Cover to Amazon KDP

To publish on Amazon, you need a Kindle Direct Publishing account.


Log in to your KDP account at http://kdp.amazon.com/.
Select the checkbox next to the book you want to edit
Select the "Actions" drop-down menu under your book list and choose "Edit book details."
Scroll down to the heading labeled "Product Image."
Click on the button named "Browse for Image..."
A pop-up window will appear. Click the button named "Browse."
Locate your cover image file on your computer, click "Open."
Click the "Upload Image" button.
Uploaded Successfully! will appear along with the preview image.
When you have entered all other information scroll to the bottom of page and click "Save and Continue."

Rights and Pricing

You are almost done. On this page you will need to reconfirm Content Rights, and click "Save and Publish" at the bottom of the screen. Changes will take effect on the web site within 24 hours. NOTE: The previewed image serves only as a placeholder while your book completes the publishing process. The publishing process can take about 24 hours (longer if they are backed up). So be patient.

When to Publish

Planning ahead is best, so if you want your book to be live and ready for purchasing by a certain date, then pre-prepare your book publishing information long before you plan to publish. The book sits in "Draft" mode until you publish. Just make sure you change the date on the publication before you publish. If you started the process in March 2011, and finally publish in July, the March date will be used. When working on your ebook, if you don't have a product image Kindle will add a placeholder image to the Amazon detail page for your eBook. DO NOT LEAVE IT THAT WAY! Although the Kindle placeholder contains the title of your book and the first contributor name you entered, it is a generic book cover. While ANY cover produces a better customer experience than displaying a message that an image is not available, nothing can beat a well designed and enticing book cover.

Download sample covers here




Suzanne Fyhrie Parrott is the founder of UnrulyGuides.com, a resource for self-published authors. She also operates OneWay Advertising. and Design, a Christian advertising and marketing agency focusing on the Book and Ebook market. Since 1988, she has provided professional services including book layout and design, book and e-book formatting, Internet marketing, website design and SEO. She has published several books including the "Ebook Formatting Kit for Epub and Mobi" and "How to Create a Book Cover Design."