Quote:
Originally Posted by DanPotter
okay I'm making this ebook as an epub first via sigil. Then using amazon to convert it to mobi
I have the NCX file working. I have a linked table of contents, but it cannot find the TOC nor the start of the text (opens on the title page)
I think the trouble is with these lines of code on the bottom of my content.opf file.
<guide>
<reference href="toc.xhtml" title="Table of Contents" type="toc" />
<reference href="Chapter 1.xhtml" title="Beginning" type="text" />
</guide>
Can anyone help?
|
The guide should look something like this:
Code:
<guide>
<reference href="Text/The%20Mystery%20of%20Room%2075.htm" title="Cover" type="cover" />
<reference href="Text/The%20Mystery%20of%20Room%2075_0002.xhtml" title="Title Page" type="title-page" />
<reference href="Text/The%20Mystery%20of%20Room%2075_0003.xhtml" title="Table Of Contents" type="toc" />
<reference href="Text/The%20Mystery%20of%20Room%2075_0004.xhtml" title="Start Reading" type="start" />
</guide>
I think in your code
Code:
<reference href="Chapter 1.xhtml" title="Beginning" type="text" />
Should be
Code:
<reference href="Chapter 1.xhtml" title="Beginning" type="start" />