<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Natasha Fondren &#187; Kindle Formatting</title>
	<atom:link href="http://www.natashafondren.com/writing/category/kindle-formatting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.natashafondren.com/writing</link>
	<description>Adventures in Writing on the Road</description>
	<lastBuildDate>Thu, 09 Feb 2012 22:02:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Pull-Quotes in Kindle Format 8</title>
		<link>http://www.natashafondren.com/writing/kindle-formatting/pull-quotes-in-kindle-format-8/</link>
		<comments>http://www.natashafondren.com/writing/kindle-formatting/pull-quotes-in-kindle-format-8/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 06:20:40 +0000</pubDate>
		<dc:creator>Natasha Fondren</dc:creator>
				<category><![CDATA[Kindle Formatting]]></category>
		<category><![CDATA[KF8]]></category>
		<category><![CDATA[Kindle Format 8]]></category>
		<category><![CDATA[mobi formatting]]></category>

		<guid isPermaLink="false">http://www.natashafondren.com/writing/kindle-formatting/pull-quotes-in-kindle-format-8/</guid>
		<description><![CDATA[One of the problems with the new Kindle Format is backwards-compatibility. First problem was poetry and hanging indents, which Joshua Tallent solved most excellently: Backwards Compatible Poetry for KF8/Mobi Next on my list were pull quotes. The old Kindle format never did pull quotes very well, but the new one will float them: very pretty. [...]]]></description>
			<content:encoded><![CDATA[<p><span class="caps">One of the problems</span> with the new Kindle Format is backwards-compatibility. First problem was poetry and hanging indents, which Joshua Tallent solved most excellently: <a href="http://ebookarchitects.com/blog/backwards-compatible-poetry-for-kf8mobi/" target="_blank">Backwards Compatible Poetry for KF8/Mobi</a></p>
<p>Next on my list were pull quotes. The old Kindle format never did pull quotes very well, but the new one will float them: very pretty. However… to be backwards compatible with the old mobi format, I had to lose the top and bottom border and use &lt;hr&gt; tags. (*shudders*) And then there’s that &lt;hr&gt; bottom/top margin problem, along with Kindle margin-bottom problem, as well.</p>
<p>I’d love thoughts and suggestions! Kindle markup is just <em>ugly, </em>sometimes.</p>
<p>I’m not 100% happy, but this is what I ended up with:</p>
<p><strong>The Kindle Fire:</strong></p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="kFirebq" border="0" alt="kFirebq" src="http://www.natashafondren.com/writing/wp-content/uploads/2012/01/kFirebq.jpg" width="440" height="326" /></p>
<p><strong>Old Kindle e-ink:</strong></p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="kKbq" border="0" alt="kKbq" src="http://www.natashafondren.com/writing/wp-content/uploads/2012/01/kKbq.jpg" width="440" height="321" /></p>
<p><strong>Kindle for PC:</strong></p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="kPCbq" border="0" alt="kPCbq" src="http://www.natashafondren.com/writing/wp-content/uploads/2012/01/kPCbq.jpg" width="412" height="620" /></p>
<p><strong>Kindle for iPhone:</strong></p>
<p><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto; padding-top: 0px" title="kIPhbq" border="0" alt="kIPhbq" src="http://www.natashafondren.com/writing/wp-content/uploads/2012/01/kIPhbq.jpg" width="301" height="466" /></p>
<p>And the CSS:</p>
<blockquote><p style="font-style: normal"><code><font color="#0000ff">/*Kindle Format 8*/</font>         <br />@media not amzn-mobi {         <br />.pqg {         <br />&#160;&#160;&#160; float:right !important;         <br />&#160;&#160;&#160; width:40% !important;         <br />&#160;&#160;&#160; margin: 0;         <br />&#160;&#160;&#160; padding-right: .5em !important;         <br />&#160;&#160;&#160; padding-left: .5em !important;         <br />&#160;&#160;&#160; padding-top:0;         <br />&#160;&#160;&#160; padding-bottom:0;         <br />&#160;&#160;&#160; text-align: center;         <br />&#160;&#160;&#160; border: none;         <br />&#160;&#160;&#160; }         <br />p.after {         <br />&#160;&#160;&#160; text-indent:2em;         <br />&#160;&#160;&#160; }         <br />p.blockp {         <br />&#160;&#160;&#160; text-indent:0;         <br />&#160;&#160;&#160; text-align:left;         <br />&#160;&#160;&#160; margin-top:10px; }         <br />}         </p>
<p><font color="#0000ff">/*Old Mobi*/</font>         <br />@media amzn-mobi {         <br />.pqg {         <br />&#160;&#160;&#160; text-align: center;         <br />&#160;&#160;&#160; }         <br />p.after {         <br />&#160;&#160;&#160; text-indent:2em;         <br />&#160;&#160;&#160; margin-top:30px;         <br />&#160;&#160;&#160; }         <br />p.blockp {         <br />&#160;&#160;&#160; text-indent:0;         <br />&#160;&#160;&#160; text-align:left;         <br />&#160;&#160;&#160; margin-top:10px; }         <br />}</code></p>
</blockquote>
<p>And then the HTML:</p>
<blockquote><p style="font-style: normal"><code><font color="#0000ff">&lt;div <font color="#ff8000">class=</font><font color="#9b00d3">&quot;pqg&quot;</font>&gt;           <br />&lt;hr <font color="#ff8000">class=</font><font color="#9b00d3">&quot;nd&quot;</font>/&gt;           <br />&lt;p <font color="#ff8000">class=</font><font color="#9b00d3">&quot;blockp&quot;</font>&gt;&lt;span <font color="#ff8000">class=</font><font color="#9b00d3">&quot;gre&quot;</font>&gt;&lt;i&gt;</font>God loves fermentation just as dearly as he loves vegetation<font color="#0000ff">.&lt;/i&gt;&lt;/span&gt;&lt;/p&gt;</font>         <br /><font color="#0000ff">&lt;p <font color="#ff8000">class=</font><font color="#9b00d3">&quot;right&quot;</font>&gt;&lt;span <font color="#ff8000">class=</font><font color="#9b00d3">&quot;gre&quot;</font>&gt;&lt;span <font color="#ff8000">class=</font><font color="#9b00d3">&quot;smallcaps&quot;</font>&gt;</font><font color="#ff0080">&amp;ndash;</font> Ralph Waldo Emerson<font color="#0000ff">&lt;/span&gt;&lt;span&gt;&lt;/p&gt;</font>         <br /></code><code><font color="#0000ff">&lt;hr</font> <font color="#ff8000">class=</font><font color="#9b00d3">&quot;nd&quot;</font><font color="#0000ff">/&gt;          <br />&lt;/div&gt;</font>         </p>
<p><font color="#0000ff">&lt;p</font> <font color="#ff8000">class=</font><font color="#9b00d3">&quot;after&quot;</font><font color="#0000ff">&gt;</font></code></p>
</blockquote>
<p>It’s the best I’ve come up with thus far. I can’t wait until the old devices are updated to support KF8, but I’m not real hopeful it will happen anytime soon.</p>
<p><span class="question">What do you think? Suggestions?</span></p>
<hr />
<p><a href="http://www.natashafondren.com/writing/kindle-formatting/pull-quotes-in-kindle-format-8/">Visit this post on my Blog.</a></p>
<p><small>© Natasha Fondren for <a href="http://www.natashafondren.com/writing">Natasha Fondren</a>, 2012. |
<a href="http://www.natashafondren.com/writing/kindle-formatting/pull-quotes-in-kindle-format-8/#comments">7 comments</a>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashafondren.com/writing/kindle-formatting/pull-quotes-in-kindle-format-8/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How to Set Ebook Prices</title>
		<link>http://www.natashafondren.com/writing/kindle-formatting/how-to-set-ebook-prices/</link>
		<comments>http://www.natashafondren.com/writing/kindle-formatting/how-to-set-ebook-prices/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 16:36:40 +0000</pubDate>
		<dc:creator>Natasha Fondren</dc:creator>
				<category><![CDATA[Ebook Formatting]]></category>
		<category><![CDATA[Epub Formatting]]></category>
		<category><![CDATA[iPad Formatting]]></category>
		<category><![CDATA[Kindle Formatting]]></category>
		<category><![CDATA[Ebook pricing]]></category>

		<guid isPermaLink="false">http://www.natashafondren.com/writing/kindle-formatting/how-to-set-ebook-prices/</guid>
		<description><![CDATA[I get this question a lot. Mostly, I say “I don’t know.” It’s not that I don’t have opinions or ideas, but I don’t want to give advice on something that could, potentially, lose someone money. But iampariah did in the video below, and I think he did it super well. I think there’s another [...]]]></description>
			<content:encoded><![CDATA[<p><span class="caps">I get this question a lot.</span> Mostly, I say “I don’t know.” It’s not that I don’t have opinions or ideas, but I don’t want to give advice on something that could, potentially, lose someone money.</p>
<p>But <a href="http://iampariah.com/" target="_blank">iampariah</a> did in the video below, and I think he did it super well. I think there’s another price range, $3.99 – $4.99, that deserves it’s own range, though. Just my opinion, but what he said about $3.99 – $8.99 is really more for the $5 – $8.99 range.</p>
<p>I&#8217;d be interested in what people think of the $3.99 &#038;ndash $4.99 range, both from readers and from authors who&#8217;ve experimented with that price range.</p>
<p>From a theoretical standpoint, I <i>like</i> that price point. It&#8217;s fair and good payment for the author, and still cheap for readers.</p>
<p>Mostly I&#8217;m thinking fiction here, by the way.</p>
<p><object width="440" height="328"><param name="movie" value="http://www.youtube.com/v/9ur7aBfygnI?version=3&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/9ur7aBfygnI?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="440" height="328" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><span class="question">What do you think about ebook pricing?</span></p>
<hr />
<p><a href="http://www.natashafondren.com/writing/kindle-formatting/how-to-set-ebook-prices/">Visit this post on my Blog.</a></p>
<p><small>© Natasha Fondren for <a href="http://www.natashafondren.com/writing">Natasha Fondren</a>, 2011. |
<a href="http://www.natashafondren.com/writing/kindle-formatting/how-to-set-ebook-prices/#comments">8 comments</a>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashafondren.com/writing/kindle-formatting/how-to-set-ebook-prices/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Crazy, Crazy Change</title>
		<link>http://www.natashafondren.com/writing/kindle-formatting/crazy-crazy-change/</link>
		<comments>http://www.natashafondren.com/writing/kindle-formatting/crazy-crazy-change/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 03:42:32 +0000</pubDate>
		<dc:creator>Natasha Fondren</dc:creator>
				<category><![CDATA[Ebook Formatting]]></category>
		<category><![CDATA[Kindle Formatting]]></category>

		<guid isPermaLink="false">http://www.natashafondren.com/writing/kindle-formatting/crazy-crazy-change/</guid>
		<description><![CDATA[The ebook world is crazy, lately. As you’ve probably heard, Kindle is embracing an entirely new format. This is a great thing: books are going to pretty much be almost as flexible as web pages, now. The possibilities are (well, I’m a writer, so I hate to use clichés, but…) endless. But change stresses me [...]]]></description>
			<content:encoded><![CDATA[<p><span class="caps">The ebook world is crazy, lately.</span> As you’ve probably heard, Kindle is embracing an entirely new format. This is a great thing: books are going to pretty much be almost as flexible as web pages, now. The possibilities are (well, I’m a writer, so I hate to use clichés, but…) endless.</p>
<p>But change stresses me out. I find that the first day of a change, whether it be a bug or a bad change or a good change, I can hardly eek out any work afterwards.</p>
<p>And then the next day?</p>
<p>The ever-changing ebook world is <em>why </em>I love it. It’s so exciting!</p>
<p>If it stayed the same, I’d get bored and quit.</p>
<p>But today? The first day? There have been so many changes lately, that I’m stressed out.</p>
<p>I do love it, though. <img src='http://www.natashafondren.com/writing/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>So what? Do I now delete all my Kindle Formatting posts? I’m sorta glad I never had time to finish the series.</p>
<p><span class="question">Do you need time to process change?</span></p>
<hr />
<p><a href="http://www.natashafondren.com/writing/kindle-formatting/crazy-crazy-change/">Visit this post on my Blog.</a></p>
<p><small>© Natasha Fondren for <a href="http://www.natashafondren.com/writing">Natasha Fondren</a>, 2011. |
<a href="http://www.natashafondren.com/writing/kindle-formatting/crazy-crazy-change/#comments">9 comments</a>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashafondren.com/writing/kindle-formatting/crazy-crazy-change/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How To Get Started&#8230;</title>
		<link>http://www.natashafondren.com/writing/editing/how-to-get-started/</link>
		<comments>http://www.natashafondren.com/writing/editing/how-to-get-started/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 22:48:45 +0000</pubDate>
		<dc:creator>Natasha Fondren</dc:creator>
				<category><![CDATA[Ebook Formatting]]></category>
		<category><![CDATA[Editing]]></category>
		<category><![CDATA[Kindle Formatting]]></category>
		<category><![CDATA[Writing Craft]]></category>
		<category><![CDATA[homeschooling]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[self-education]]></category>

		<guid isPermaLink="false">http://www.natashafondren.com/writing/editing/how-to-get-started/</guid>
		<description><![CDATA[People keep asking me how to get started writing, ebook formatting, and copyediting, so I thought I’d do a series. I’m not actually sure how I got started, so I hope you’ll contribute with your advice, as well. A programming friend of mine says most of the coders he meets, more than those with computer [...]]]></description>
			<content:encoded><![CDATA[<p><span class="caps">People keep asking me how to get started writing, ebook formatting, and copyediting,</span> so I thought I’d do a series. I’m not actually sure how I got started, so I hope you’ll contribute with your advice, as well. </p>
<p>A programming friend of mine says most of the coders he meets, more than those with computer degrees, are either ex-teachers or graduates of the seminary.</p>
<p>I don’t think that’s a coincidence.</p>
<p>Probably the number one skill one needs to start anything is the ability to self-educate. Teachers learn how to teach, and so they know how to teach themselves, and in seminary school, students learn how to question and investigate everything they do and don’t know.</p>
<p>Penelope Trunk, an eccentric blogger who’s made a career of predicting and understanding how each generation works in and impacts the workforce, says that <a href="http://blog.penelopetrunk.com/2011/03/30/generation-z-will-revolutionize-education/" target="_blank">homeschooled kids will rule the world when Gen Z hits the workplace</a>.</p>
<p>Why?</p>
<p>Because they know how to teach themselves. They’ll be able to figure out which skill they need to learn next for their career, and then they’ll be able to direct their own education.</p>
<p><span class="caps">Question what you think you know:</span> Better yet, pretend you know nothing. This is probably the most dangerous area to skip, and yet the area people skip the most. Most of the time when people start a sentence with “I remember learning in college,” they are wrong. Often they are correct in the information, but incorrect in the application, if that makes sense.</p>
<p><span class="caps">Search for what you don’t know:</span> The more you learn, the more you realize you need to learn. It’s why I haven’t finished my Kindle Formatting series. It was easy to start when I was a beginner, but now I’ve learned too much. I thought I could explain it all in ten or so posts, but once I got through about five, I realized that to do it thoroughly, I’d need two hundred or so posts.</p>
<p><span class="caps">Keep leveling up:</span> I constantly ask myself what I can learn next. The invisible things you think you don’t really <em>need</em> to know are the things that will take you from competence to excellence.</p>
<p><span class="caps">Get an edge by linking across disciplines:</span> When I was a piano teacher, I studied the Suzuki teaching method even though I thought it wasn’t completely right for piano. (It is for other instruments.) But no need to throw the baby out with the bathwater. Investigate everything. </p>
<p>I also aggressively studied child psychology, self-help psychology, leadership books, business books, parenting books, homeschooling books, teaching philosophy books, sports coaching books, marketing, peak performance science, language learning, and motivation science.</p>
<p>Know everything in your field, and then link outside of it.</p>
<p><span class="question">How do you get started when teaching yourself something?</span></p>
<hr />
<p><a href="http://www.natashafondren.com/writing/editing/how-to-get-started/">Visit this post on my Blog.</a></p>
<p><small>© Natasha Fondren for <a href="http://www.natashafondren.com/writing">Natasha Fondren</a>, 2011. |
<a href="http://www.natashafondren.com/writing/editing/how-to-get-started/#comments">6 comments</a>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashafondren.com/writing/editing/how-to-get-started/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>New Kindle Bits &amp; Pieces</title>
		<link>http://www.natashafondren.com/writing/kindle-formatting/new-kindle-bits-pieces/</link>
		<comments>http://www.natashafondren.com/writing/kindle-formatting/new-kindle-bits-pieces/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 17:45:51 +0000</pubDate>
		<dc:creator>Natasha Fondren</dc:creator>
				<category><![CDATA[Ebook Formatting]]></category>
		<category><![CDATA[Epub Formatting]]></category>
		<category><![CDATA[iPad Formatting]]></category>
		<category><![CDATA[Kindle Formatting]]></category>

		<guid isPermaLink="false">http://www.natashafondren.com/writing/kindle-formatting/new-kindle-bits-pieces/</guid>
		<description><![CDATA[Did you hear that Kindle books now allow you to communicate with the author from within the book? It’s an awesome feature. Of course, they’re only rolling it out for a few authors to begin with, including J.A. Konrath, John Locke, Ted Dekker, James Rollins, and more. Here’s an explanation: @author is a new forum [...]]]></description>
			<content:encoded><![CDATA[<p><span class="caps">Did you hear that Kindle books</span> now allow you to communicate with the author from within the book? It’s an awesome feature. Of course, they’re only rolling it out for a few authors to begin with, including J.A. Konrath, John Locke, Ted Dekker, James Rollins, and more.</p>
<p>Here’s an explanation:</p>
<blockquote><p>@author is a new forum that connects readers with authors and others in the reading community by allowing readers to ask questions about authors and books. Readers can ask questions from the Kindle by highlighting a passage, typing “@author” followed by the question, and using the Tweet/Share option, or from the Amazon Author Page.</p>
</blockquote>
<p>To get the answer, you have to go to the author’s Amazon page:</p>
<blockquote><p>When you ask an @author question from your Kindle or from the Amazon Author Page, you will automatically receive an e-mail notification when a new answer to your question has been posted.</p>
</blockquote>
<p>It seems that every day, new developments and changes happen with ebooks. Although ebooks should be flowable text for the best reader experience, publishers and authors want more control over design. Apple now has a Fixed-Layout Format, and Kindle just released <a href="http://www.amazon.com/gp/help/customer/display.html?nodeId=200738250" target="_blank">Kindle Print Replica Content</a>.</p>
<p>It’s exciting to see how things are developing. I’m glad that design is becoming as important a factor in ebooks as it is in print books.</p>
<hr />
<p><a href="http://www.natashafondren.com/writing/kindle-formatting/new-kindle-bits-pieces/">Visit this post on my Blog.</a></p>
<p><small>© Natasha Fondren for <a href="http://www.natashafondren.com/writing">Natasha Fondren</a>, 2011. |
<a href="http://www.natashafondren.com/writing/kindle-formatting/new-kindle-bits-pieces/#comments">10 comments</a>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashafondren.com/writing/kindle-formatting/new-kindle-bits-pieces/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>A Milestone &amp; Ebook Excellence</title>
		<link>http://www.natashafondren.com/writing/kindle-formatting/a-milestone-ebook-excellence/</link>
		<comments>http://www.natashafondren.com/writing/kindle-formatting/a-milestone-ebook-excellence/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 19:36:15 +0000</pubDate>
		<dc:creator>Natasha Fondren</dc:creator>
				<category><![CDATA[Ebook Formatting]]></category>
		<category><![CDATA[Epub Formatting]]></category>
		<category><![CDATA[Kindle Formatting]]></category>

		<guid isPermaLink="false">http://www.natashafondren.com/writing/kindle-formatting/a-milestone-ebook-excellence/</guid>
		<description><![CDATA[I now know enough people in Tucson to actually run into people I know when I’m randomly out and about! It’s happened three times this week. And that’s not counting going to a coffee shop where I know people! I’m happy, but also this means that when it’s 8pm and I’ve gotten ready for bed [...]]]></description>
			<content:encoded><![CDATA[<p><span class="caps">I now know enough people in Tucson</span> to actually <em>run into people I know </em>when I’m randomly out and about! It’s happened three times this week. And that’s not counting going to a coffee shop where I know people!</p>
<p>I’m happy, but also this means that when it’s 8pm and I’ve gotten ready for bed and I’m a little on the scuzzy side with messy hair and a shiny, freshly-washed face, a trip to the store on a rabid search for chocolate could prove to be a little embarrassing. Before, I was <em>certain </em>to be anonymous.</p>
<p>You know how it is. The <em>one time</em> you don’t want to be seen is when you will most certainly be seen. <img src='http://www.natashafondren.com/writing/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h6>&#160;</h6>
<p><span class="caps">Also this week,</span> I’ve updated my coding for ebooks. There are a number of display problems on the different devices, so I’ve updated my code so it’s all fresh and new and makes everything look good.</p>
<p>I’ve reached a point where I’ve got a queue, so I lose all the business of people who want a super-quick turnaround. <img src='http://www.natashafondren.com/writing/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  However, I’ve decided I want to take my time <em>more</em>.</p>
<p>When I was a teacher, the motto of our studio was “Teaching Excellence.” And I know I can only take a miniscule amount of credit for it, but whenever I hear how my students are doing, I just beam with pride. They’re all doing <em>something</em> with excellence.</p>
<p>And, as I used to say <em>ad nauseum</em> to the students, excellence is doing that last 2% that takes as long as the first 98%.</p>
<p>So I’m slowing down.</p>
<p>Right now, it seems a large portion of ebook design and formatting focus is making things display <em>correctly</em> on every device, but with the changes coming to eReaders and the coming of epub3 in the next few months and year, the focus will shift to <em>quality of design, </em>particularly with things like the <a href="http://www.publishinginnovationawards.com/" target="_blank">Publishing Innovation Awards</a> that promote excellence in ebook design.</p>
<p>And that’s how it should be. I want <a href="http://ebookartisandesign.com" target="_blank">the eBook Artisans</a> to be known for excellence. It’s difficult, though, because a lot of authors see every day as sales lost, so they want it out there right <em>now.</em> It’s an instant gratification world.</p>
<p>So probably I will lose a bunch of quotes, but when my queue empties, I’ll be able to have a quick turnaround again! Woo-hoo!</p>
<p>Have you seen any of the gorgeous, multimedia ebooks coming out lately? Particularly on the Nook and the iPad? The children’s books are just fantastic, with embedded audio reading the story along as you turn the pages and gorgeous graphics. Pretty soon authors will be embedding book trailers to their other books in the back of each book, and all sorts of interesting stuff!</p>
<p>Remember when books used to be <em>illustrated</em>? I miss that! I’m betting we’ll see more of that, too.</p>
<p><span class="question">Aren’t you excited for all the cool stuff that’s coming to ebooks?</span></p>
<hr />
<p><a href="http://www.natashafondren.com/writing/kindle-formatting/a-milestone-ebook-excellence/">Visit this post on my Blog.</a></p>
<p><small>© Natasha Fondren for <a href="http://www.natashafondren.com/writing">Natasha Fondren</a>, 2011. |
<a href="http://www.natashafondren.com/writing/kindle-formatting/a-milestone-ebook-excellence/#comments">10 comments</a>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashafondren.com/writing/kindle-formatting/a-milestone-ebook-excellence/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Ebook Cover Design and Optimum Size Specifications for Amazon, Kindle, B&amp;N, Nook, iBookstore, and iPad Formats</title>
		<link>http://www.natashafondren.com/writing/kindle-formatting/ebook-cover-design-and-optimum-size-specifications-for-amazon-kindle-bn-nook-ibookstore-and-ipad-formats/</link>
		<comments>http://www.natashafondren.com/writing/kindle-formatting/ebook-cover-design-and-optimum-size-specifications-for-amazon-kindle-bn-nook-ibookstore-and-ipad-formats/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 10:10:00 +0000</pubDate>
		<dc:creator>Natasha Fondren</dc:creator>
				<category><![CDATA[Ebook Formatting]]></category>
		<category><![CDATA[Epub Formatting]]></category>
		<category><![CDATA[iPad Formatting]]></category>
		<category><![CDATA[Kindle Formatting]]></category>
		<category><![CDATA[book design]]></category>
		<category><![CDATA[cover design]]></category>
		<category><![CDATA[covers]]></category>
		<category><![CDATA[ebook formatting]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[Kindle]]></category>
		<category><![CDATA[Nook]]></category>
		<category><![CDATA[self-publishing]]></category>

		<guid isPermaLink="false">http://www.natashafondren.com/writing/kindle-formatting/ebook-cover-design-and-optimum-size-specifications-for-amazon-kindle-bn-nook-ibookstore-and-ipad-formats/</guid>
		<description><![CDATA[If you self-publish, you should read this post before hiring a cover designer. I get a lot of covers from authors whose designer made a standard cover without knowing what size is best. I’m not sure how they decide on the image size, because it’s never optimized for anything. Also, I’ve seen cover designers give [...]]]></description>
			<content:encoded><![CDATA[<p><span class="caps">If you self-publish,</span> you should read this post before hiring a cover designer. I get a lot of covers from authors whose designer made a standard cover without knowing what size is best. I’m not sure how they decide on the image size, because it’s never optimized for anything. Also, I’ve seen cover designers give clients the wrong size, and then charge more when their client asks for the right one.</p>
<blockquote><p>SPECIAL NOTE: This is a long, detailed post. If you’re not interested in all the whys and wherefores, I suggest reading this first section, then reading the last section: the <a href="#guide">Quick and Handy Guide</a>.</p>
</blockquote>
<p>Designers tend to rely on their customers to tell them what they want, so if you self-publish, you need to know what to ask for.</p>
<p>Let’s do simple first.</p>
<p>If you only get one size for ebook formatting, go with these specifications:</p>
<ol>
<li>600px x 800px </li>
<li>Jpeg </li>
</ol>
<p>I think most ebook formatters and developers can and will optimize it as best as possible from that… or at least I do, by rule. I can’t change proportions, though… and each format calls for a different proportion. So if your designer can give you covers in various proportions and sizes without resizing it out-of-whack, then please send them to the handy guide at the bottom of this post.</p>
<p>600px x 800px is the best choice if you pick one. At <a href="http://ebookartisandesign.com" target="_blank">the eBook Artisans</a>, our <a href="http://ebookartisandesign.com/pricing.html" target="_blank">digital cover + epub + Kindle special</a> includes a 600px x 800px cover.</p>
<p>NOTE: By optimum size, I mean the size at which the cover image fills the screen perfectly without extra white space on the top, bottom, or sides.</p>
<h3>Ebook Cover Design</h3>
<p>I’m no graphic designer, obviously. The only important thing I can say about cover art for ebooks, is that the cover will be automatically resized to a thumbnail on the device library and, most importantly, in the retail catalog/website—which is usually the first place your customer sees your cover.</p>
<p>Because of this, the cover should look good when the <em>large </em><strong>Catalog Cover</strong> image is <em>automatically resized</em> to about 150px high, give or take some, depending. Large fonts for the title generally look good, as well as not-too-busy covers.</p>
<p>And, of course, the cover should look good full-sized. LOL!</p>
<h3>A Quick Glossary</h3>
<p>Keith Snyder had a great post about the <a href="http://keithsnyder.wordpress.com/2011/06/02/dont-judge-a-book-by-its-jpeg/" target="_blank">distinguishing and naming the different type of covers</a>. It’s better, funnier, and more in-depth. <img src='http://www.natashafondren.com/writing/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  In a nutshell, your cover will serve the following functions:</p>
<ol>
<li><span class="question">Embedded Ebook Cover:</span> The cover embedded inside your ebook that displays as the first page. This can (and probably should) be separately sized for each different store. </li>
<li><span class="question">Catalog Cover:</span> The cover that shows up in the ebook store on Amazon, B&amp;N, iBooks, and other retailers. Generally uploaded separately. </li>
<li><span class="question">Print Cover:</span> For the print edition. Unlike an ebook cover which is only a front, a print cover also needs a spine and a back cover&#8230; and higher-resolution graphics. </li>
<li><span class="question">Publicity Cover:</span> I’m no expert on the best sizes for this, but this includes your website, blog headers, ads, postcards, business cards, etc. Your designer probably does know! </li>
</ol>
<h3>Underlying Philosophy</h3>
<p>Choosing a size for a digital cover, when it will automatically be resized depending on what device the reader views it on, is difficult. I generally operate under the following priorities:</p>
<ol>
<li><span class="question">Majority Rules, Minority Protected:</span> I like the cover to look good on all devices, but I like the cover to look <em>best </em>on the most-used device. Each of the retailers allow their ebooks to be read on a wide variety of devices, and none of them publish statistics on where there books are most read. So it’s difficult to determine. </li>
<li><span class="question">Big to Small:</span> In <em>general</em>, a big cover automatically resized to be smaller usually looks better than a small cover automatically resized to be bigger. Small to big usually results in ugly blurriness, while big to small generally results in not-so-great but readable font. </li>
<li><span class="question">The Retailer’s Guidelines</span> </li>
</ol>
<h3>Color vs. Grayscale</h3>
<p><span class="caps">Color.</span> For Kindle formatting, it used to be better to sharpen and convert your cover image to grayscale. Times change quickly, though. Now that Kindle books are read on PCs, Macs, iPads, Androids, Tablets, and iPhones, color is the way to go. It’s predicted that Amazon will be coming out with a tablet in the next year, and a color e-reader will probably be coming out at some point, too.</p>
<h3>Kindle Covers</h3>
<p><span class="caps">Kindle is the largest ebook retailer.</span> The <strong>Catalog Cover</strong> has exact specifications released in the Amazon Publishing Guide. It should be:</p>
<ol>
<li>A “minimum” of 500px wide and a “maximum” of 1280px tall. </li>
<li>72 dpi </li>
<li>JPEG or TIFF </li>
</ol>
<p>For the <strong>Embedded Cover</strong>, this is more difficult. The published guidelines are as follows:</p>
<ol>
<li>600px x 800px </li>
<li>JPEG </li>
<li>300 dpi </li>
<li>Under 127 KB </li>
</ol>
<p>Getting an image both at 300 dpi AND under 127 KB is very difficult. The Kindle displays are actually 167 ppi… so I’d suggest altering the resolution to 167 ppi – 300 dpi, or as high a resolution that you can get while staying under 127 KB. Many say 72 dpi is just fine.</p>
<h3>Barnes &amp; Noble Covers</h3>
<p><span class="caps">The Nook Store is the second largest retailer of ebooks.</span> According to the <a href="https://simg1.imagesbn.com/pimages/pubit/support/pubit_epub_formatting_guide.pdf" target="_blank">B&amp;N Publishing Guide</a>, the <strong>Catalog Cover</strong> can be between 500px x 600px and 600px x 730px.</p>
<p>Here are the exact specifications they suggest in their guidelines for the <strong>Embedded Cover</strong>:</p>
<ol>
<li>600px x 730px </li>
<li>JPG, PNG, or GIF. As they say, “The choice of format is optional and should be based on a compromise of image quality and file size.” </li>
<li>Under 300 kb. </li>
</ol>
<p>BUT.</p>
<p>The Nook Color.</p>
<p>The Nook Color has a screen resolution of 1024px x 600px, and as far as I can tell, it’s their bestselling device by far. (Please correct me if you find statistics that prove me wrong.) So going with both the <em>Majority Rules, Minority Protected</em> <strong>and</strong> the <em>Big to Small</em> priorities, I suggest the following guidelines, if you’re looking to fill the screen perfectly:</p>
<ol>
<li>600px x 1024px </li>
<li>JPG, PNG, or GIF </li>
<li>Under 300 kb. </li>
<li>170 ppi </li>
</ol>
<h3>iPad Covers</h3>
<p><span class="caps">The iPad</span> is doing some great things for ebooks, like fixed-layouts. If you want an iPad-optimized ebook that takes advantage of the fixed-layout, it’ll cost more and probably won’t work for other retailers, but it can be well worth it, depending on your project.</p>
<p>For the purpose of this post, let’s stick with cover size for general iPad epub books. Liz Castro explains in detail why <a href="http://www.pigsgourdsandwikis.com/2010/06/page-breaks-with-images-in-epub-for.html" target="_blank">600px x 860 px is the best size</a>.</p>
<p>These are the optimum specifications for the <strong>Embedded Cover</strong>:</p>
<ol>
<li>600px x 860px </li>
<li>JPG, PNG, GIF </li>
<li>132 ppi </li>
<li>Under 200kb </li>
</ol>
<p><a id="smashwords"></a></p>
<h3>A Note About Smashwords</h3>
<p>Smashwords randomly suggests 500px x 800px as a good cover size. I don’t know why, because that’s optimized for… nothing. At least with a 600px x 800px cover size, you’re optimized for the largest retailer: Amazon. But perhaps they have their reasons that work with their Meatgrinder Software.</p>
<p><a id="guide"></a></p>
<h3>Quick and Handy Guide</h3>
<p>All images should be RGB and not CMYK. Lulu will reject sRGB, if you want to use them to get into the iBookstore, but other retailers accept it.</p>
<p>Again, always go for the correct file size first, at the cost of resolution if necessary; not the other way around.</p>
<ul>
<li>EC = Embedded Cover (give to ebook formatter to embed) </li>
<li>CC = Catalog Cover (you’ll upload separate from ebook) </li>
<li>n/s = Not Specified </li>
</ul>
<table border="1" cellspacing="0" cellpadding="2" width="500">
<tbody>
<tr>
<td valign="top" width="87">&#160;</td>
<td valign="top" width="89">Format</td>
<td valign="top" width="76">Size in px</td>
<td valign="top" width="111">Resolution</td>
<td valign="top" width="77">File Size</td>
</tr>
<tr>
<td valign="top" width="87">Kindle CC</td>
<td valign="top" width="89">JPG, TIFF</td>
<td valign="top" width="76">min 500px max 1280px</td>
<td valign="top" width="111">72 dpi</td>
<td valign="top" width="77">n/s</td>
</tr>
<tr>
<td valign="top" width="87">Kindle EC</td>
<td valign="top" width="89">JPG</td>
<td valign="top" width="76">600 x 800</td>
<td valign="top" width="111">167ppi – 300dpi</td>
<td valign="top" width="77">127kb</td>
</tr>
<tr>
<td valign="top" width="87">B&amp;N/Nook CC</td>
<td valign="top" width="89">JPG, GIF, PNG</td>
<td valign="top" width="76">600 x 730</td>
<td valign="top" width="111">n/s</td>
<td valign="top" width="77">n/s</td>
</tr>
<tr>
<td valign="top" width="87">B&amp;N/Nook EC</td>
<td valign="top" width="89">JPG, GIF, PNG</td>
<td valign="top" width="76">600 x 1024</td>
<td valign="top" width="111">170 ppi</td>
<td valign="top" width="77">300kb</td>
</tr>
<tr>
<td valign="top" width="87">iPad EC</td>
<td valign="top" width="89">JPG, GIF, PNG</td>
<td valign="top" width="76">600 x 860</td>
<td valign="top" width="111">132 ppi</td>
<td valign="top" width="77">200kb</td>
</tr>
</tbody>
</table>
<p>Again, 600px x 800px will pretty much cover your bases, so if you choose one size, I suggest that one.</p>
<p>And if you ever need a cover, <a href="http://ebookartisandesign.com" target="_blank">the eBook Artisans</a> teams up with <a href="http://inkslingerdesigns.com" target="_blank">Ink Slinger Designs</a> to offer ebook formatting and cover art. (I had to put in a plug!) You can view some <a href="http://ebookartisandesign.com/" target="_blank">sample covers here</a>.</p>
<p><span class="question">Any questions? Any new info to add? Any corrections?</span></p>
<hr />
<p><a href="http://www.natashafondren.com/writing/kindle-formatting/ebook-cover-design-and-optimum-size-specifications-for-amazon-kindle-bn-nook-ibookstore-and-ipad-formats/">Visit this post on my Blog.</a></p>
<p><small>© Natasha Fondren for <a href="http://www.natashafondren.com/writing">Natasha Fondren</a>, 2011. |
<a href="http://www.natashafondren.com/writing/kindle-formatting/ebook-cover-design-and-optimum-size-specifications-for-amazon-kindle-bn-nook-ibookstore-and-ipad-formats/#comments">33 comments</a>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashafondren.com/writing/kindle-formatting/ebook-cover-design-and-optimum-size-specifications-for-amazon-kindle-bn-nook-ibookstore-and-ipad-formats/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>I Love My Job</title>
		<link>http://www.natashafondren.com/writing/kindle-formatting/i-love-my-job/</link>
		<comments>http://www.natashafondren.com/writing/kindle-formatting/i-love-my-job/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 19:52:59 +0000</pubDate>
		<dc:creator>Natasha Fondren</dc:creator>
				<category><![CDATA[Kindle Formatting]]></category>
		<category><![CDATA[ebook formatting]]></category>

		<guid isPermaLink="false">http://www.natashafondren.com/writing/kindle-formatting/i-love-my-job/</guid>
		<description><![CDATA[Isn’t it great? Ebook formatting and writing fiction seem to be the perfect balance for me. Actually, one of the ebooks I’m formatting helped me realize how left-brained I am, which helped me realize that if I spend a significant portion of my day doing that type of detailed work, it’s much easier to do [...]]]></description>
			<content:encoded><![CDATA[<p><span class="caps">Isn’t it great?</span> <a href="http://ebookartisandesign.com" target="_blank">Ebook formatting</a> and writing fiction seem to be the perfect balance for me. Actually, one of the ebooks I’m formatting helped me realize how left-brained I am, which helped me realize that if I spend a significant portion of my day doing that type of detailed work, it’s much easier to do some right-brain writing later. (I’ll tell you about the book when it’s up for sale.)</p>
<p>I’ve been told my dad wanted me to be a computer programmer, but I never knew that. I did grow up playing with BASIC on a Tandy 64 (ROFL… as in 64K!), but I always thought of computers as a fun thing.</p>
<p>Anyway, I think I already posted this, but I was sitting here and formatting and thinking, “Gosh. I’m so lucky my author friends guided me into this business.”</p>
<p>So I wanted to thank you guys again. Every time you’ve asked me a computer-related question or an ebook formatting question, it wasn’t me doing you a favor, it was you helping me find my niche.</p>
<p>So thanks. <img style="border-bottom-style: none; border-right-style: none; border-top-style: none; border-left-style: none" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://www.natashafondren.com/writing/wp-content/uploads/2011/03/wlEmoticon-smile.png" /></p>
<p>I&#8217;m a little behind (if you&#8217;re my Facebook friend, you know I&#8217;ve managed to get sick three times in a row), but I&#8217;ll be back to blogging soon. </p>
<p>I want to finish the <a href="http://www.natashafondren.com/writing/category/kindle-formatting/" target="_blank">Kindle Formatting series</a>, but I’ve discovered that the more I learn, the more there is to explain. There are so many little details. It was easier to write it when I didn’t know as much. I am planning on putting together a book, though.</p>
<p>Also, I’ve been obsessed with book design lately, and I thought I might do a weekly post showcasing the cool stuff out there. It&#8217;s one of those things that you don&#8217;t notice all that goes into it until you start&#8230; noticing it.</p>
<p><span class="question">What&#8217;s up with you guys lately?</span></p>
<hr />
<p><a href="http://www.natashafondren.com/writing/kindle-formatting/i-love-my-job/">Visit this post on my Blog.</a></p>
<p><small>© Natasha Fondren for <a href="http://www.natashafondren.com/writing">Natasha Fondren</a>, 2011. |
<a href="http://www.natashafondren.com/writing/kindle-formatting/i-love-my-job/#comments">17 comments</a>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashafondren.com/writing/kindle-formatting/i-love-my-job/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Food, a Favor, &amp; eBooks</title>
		<link>http://www.natashafondren.com/writing/kindle-formatting/food-a-favor-ebooks/</link>
		<comments>http://www.natashafondren.com/writing/kindle-formatting/food-a-favor-ebooks/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 04:10:06 +0000</pubDate>
		<dc:creator>Natasha Fondren</dc:creator>
				<category><![CDATA[Kindle Formatting]]></category>
		<category><![CDATA[Kindle design]]></category>

		<guid isPermaLink="false">http://www.natashafondren.com/writing/kindle-formatting/food-a-favor-ebooks/</guid>
		<description><![CDATA[As many of you know, I hand-code and design eBooks. I know you’ve all been passing my name around (THANK YOU!), because I’ve been so busy doing it, it’s taken forever for me to get my website up. It’s finally up! So I have a favor to ask: Could you please check out my website, [...]]]></description>
			<content:encoded><![CDATA[<p><span class="caps">As many of you know,</span> I hand-code and design eBooks. I know you’ve all been passing my name around (THANK YOU!), because I’ve been so busy doing it, it’s taken forever for me to get my website up.</p>
<p>It’s finally up!</p>
<p>So I have a favor to ask: Could you please check out my website, <a href="http://ebookartisandesign.com" target="_blank">The eBook Artisans</a>, and let me know if you see any errors or confusing bits? Let me know what you think?</p>
<p>And if you could link, blog, tweet, or post to Facebook about my service, I will be ETERNALLY GRATEFUL!</p>
<p>I’ve paired up with Ink Slinger Designs to offer a fabulous deal: a digital cover, Kindle file, and ePub file for $250. <a href="http://ebookartisandesign.com/ebookformatting.html" target="_blank">Click here to get started</a>.</p>
<p>If you already have cover art, a Kindle file &amp; ePub file are $149. </p>
<p>Many <a href="http://ebookartisandesign.com/pricing.html" target="_blank">other services</a> are available, too!</p>
<p>This week, I’ll be editing and finishing my <a href="http://www.natashafondren.com/writing/category/kindle-formatting/" target="_blank">Kindle formatting series</a>, so if you have any questions or anything in particular you want me to cover, please let me know!</p>
<p><span class="question">So did your team win at the Super Bowl? Did you watch? What was your favorite commercial? And most importantly: WHAT’D YOU EAT?</span></p>
<hr />
<p><a href="http://www.natashafondren.com/writing/kindle-formatting/food-a-favor-ebooks/">Visit this post on my Blog.</a></p>
<p><small>© Natasha Fondren for <a href="http://www.natashafondren.com/writing">Natasha Fondren</a>, 2011. |
<a href="http://www.natashafondren.com/writing/kindle-formatting/food-a-favor-ebooks/#comments">26 comments</a>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashafondren.com/writing/kindle-formatting/food-a-favor-ebooks/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Why Hand-Code Ebooks?</title>
		<link>http://www.natashafondren.com/writing/kindle-formatting/why-hand-code-ebooks/</link>
		<comments>http://www.natashafondren.com/writing/kindle-formatting/why-hand-code-ebooks/#comments</comments>
		<pubDate>Fri, 05 Nov 2010 21:29:00 +0000</pubDate>
		<dc:creator>Natasha Fondren</dc:creator>
				<category><![CDATA[Kindle Formatting]]></category>

		<guid isPermaLink="false">http://www.natashafondren.com/writing/kindle-formatting/why-hand-code-ebooks/</guid>
		<description><![CDATA[Designers are not always coders, and I’m not sure NY publishing has figured this out. I was wandering through some coding forums and stumbled across a post by a frustrated employee of one of the NY publishers pleading for help on converting an InDesign file to the various ebook formats. (Adobe InDesign is the program [...]]]></description>
			<content:encoded><![CDATA[<p><span class="caps">Designers are not always coders,</span> and I’m not sure NY publishing has figured this out. I was wandering through some coding forums and stumbled across a post by a frustrated employee of one of the NY publishers pleading for help on converting an InDesign file to the various ebook formats.</p>
<p>(Adobe InDesign is the program used to design the interior of a book for print publication.)</p>
<p>She let loose a rant at how customers are blaming them for missing and added spaces and various other errors in ebooks, for which she blamed the conversion programs and threw up her hands.</p>
<p>Okay. I’m not yelling. I just have to say this big and bold because it’s an important point.</p>
<blockquote><p><strong>There exists NO automatic program that will convert a document to .mobi, .epub or Kindle format with both forward and backward compatibility. And automatic conversions will introduce formatting errors on various devices and various formats.</strong></p>
</blockquote>
<p>It’s a bear, but the <em>only </em>way to get a well-designed ebook product that looks professional and renders perfectly on all devices and in all formats is to hand-code it—and to hand-code each separate format.</p>
<p>(If you don’t know, <a href="http://en.wikipedia.org/wiki/Hand_coding" target="_blank">this is what hand-coding is</a>. In a nutshell, it’s knowing what you’re doing and not relying on a program to know it for you.)</p>
<p>The book designers in NY publishing either need to hire hand-coders, or they need to put up with the fact that their ebook products will be sloppy and inferior in comparison to those smaller publishers and indie publishers who hire people to hand-code ebooks.</p>
<p>People have been saying that the conversion script for the latest release of InDesign is better, but if you’re a Kindle owner and you’ve read those $9.99-12.99 ebooks put out by the major New York publishers this year, you may have noticed the “36 highlights” in random paragraphs.</p>
<p>OMG. So. Irritating. Like every other page, there’s suddenly 52 highlights in a paragraph, icky dotted underlines and all.</p>
<p>Would people put up with random errors and extra junk in print books? <em><strong>This is why those who read digitally feel like NY publisher’s ugly stepchildren instead of those who read print who are NY publisher’s preferred children.</strong></em></p>
<p>That’s not to say the big publishers haven’t done some beautiful work in recent years. Sometimes they experiment and it’s clear when an ebook is given the design and coding attention it deserves. For example, <a href="http://www.amazon.com/gp/product/0765347539?ie=UTF8&amp;tag=spiesandtheir-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=0765347539" target="_blank">Tor’s Kindle edition of Kushiel’s Avatar by Jacqueline Carey is more beautiful than the print edition!</a>&#160;</p>
<p>Most top websites are coded by hand. In fact, even the <a href="http://boingboing.net/2008/04/30/nytimescom-handcodes.html" target="_blank">New York Times eschews Dreamweaver and codes by hand</a> for their website:</p>
<blockquote><p>It’s our preference to use a text editor, like HomeSite, TextPad or TextMate, to “hand code” everything, rather than to use a wysiwyg (what you see is what you get) HTML and CSS authoring program, like Dreamweaver. We just find it yields better and faster results.</p>
</blockquote>
<p>With clean, hand-coded websites, you’re not going to get a bunch of extra junk that WYSIWYG editors put in. And the cleaner your code, the more likely it will render correctly in all the major browsers, including the older versions and the new versions yet to come.</p>
<p>With clean, hand-coded ebooks, you get the same benefits. The cleaner your code, the more likely it will render correctly in all the major e-reading devices, both the older ones and the new ones yet to come.</p>
<p>Even better if you hire a hand-coder who can code with respect to the various quirks on the different devices and stores.</p>
<p>For those who self-publish, this is definitely an area in which you can stand out as more professional than your traditional-published competition.</p>
<p><a href="http://natashafondren.com/contact.html" target="_blank">So hire me!</a> Kidding. Well, not really. I hope you will! <img src='http://www.natashafondren.com/writing/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  I’ve just been so busy with coding books for people, I haven’t had time to put up an information site about it yet.</p>
<p>For realz, though, I’ve got several posts on <a href="http://www.natashafondren.com/writing/category/kindle-formatting/" target="_blank">Kindle Formatting to help you</a>, if you want to give it a go yourself. Joshua Tallent has an awesome book, <a href="http://www.amazon.com/Kindle-Formatting-Complete-Amazon-ebook/dp/B0024FAPF4/ref=sr_1_1?ie=UTF8&amp;m=AG56TWVU5XWC2&amp;s=digital-text&amp;qid=1288986619&amp;sr=1-1" target="_blank">The Complete Guide to Kindle Formatting</a>, which is the one you want to get. (Most others are junk.) I have yet to find a book as good as Tallent’s on Epub Formatting.</p>
<p>So there’s my rant for the day. It boggles my mind how the NY publishers can complain that we don’t want to pay $12.99 for an ebook, and they can’t even bother to put out a product that is free of GLARING, intrusive errors.</p>
<hr />
<p><a href="http://www.natashafondren.com/writing/kindle-formatting/why-hand-code-ebooks/">Visit this post on my Blog.</a></p>
<p><small>© Natasha Fondren for <a href="http://www.natashafondren.com/writing">Natasha Fondren</a>, 2010. |
<a href="http://www.natashafondren.com/writing/kindle-formatting/why-hand-code-ebooks/#comments">16 comments</a>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.natashafondren.com/writing/kindle-formatting/why-hand-code-ebooks/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

