3 Replies to “Keep It Sigil Simple”

  1. There was a question about choosing the page to be seen first when the ebook is first opened.

    1. In Sigl, right-click on the file you wish to be the start file (Chapter 1 or a prologue) and choose Add Semantics | Text.

    this adds this code to the the content.opf

      <guide>
        <reference href="Text/Cover.xhtml" title="Cover" type="cover" />
        <reference href="Text/Title.xhtml" title="Title Page" type="title-page" />
        <reference href="Text/Copyright.xhtml" title="Copyright Page" type="copyright-page" />
        <reference href="Text/TOC.xhtml" title="Table Of Contents" type="toc" />
        <reference href="Text/A%20few%20months%20ago.htm" title="Text" type="text" />
      </guide>
    

    Kindle opens to the first document marked with type=”text” in the tags.

    Even without this, my book has worked perfectly on Kindle because Kindle tries to figure this out and is quite successful at it.

Leave a Reply

Related Post

Earn 6% more as an Author

Authors spend a lot of time writing books. The best work they can do is to write. But while writing is the best work they can do it is not the only work they should do. Marketing is important if a writer wants to make their passion a career. Both Published and unpublished authors get […]

How to give an eBook as a gift?

I have been asked how one can give my one of my books or novellas as a gift. Amazon.com makes it very easy to give an ebook as a give. There are two ways to give an eBook as a gift: Virtual Gift Have the gift ebook sent directly to someone’s email address Physical Gift […]

Don’t use blank lines in your novel

The html behind your book looks like this when you have blank line. <p>This is one paragraph.</p> <p></p> <p>This is another paragraph.</p> The blank line will be remove automatically by the software and become just this: <p>This is one paragraph.</p> <p>This is another paragraph.</p> So common blank lines I know about that Authors use in […]