So, maybe there is a better way to do stuff than I have been doing.
For Kindle I have a HTML, OPF, and toc.ncx. The ncx is bacially a xml with all of the table of contents info:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ncx PUBLIC "-//NISO//DTD ncx 2005-1//EN" "http://www.daisy.org/z3986/2005/ncx-2005-1.dtd">
<ncx xmlns="http://www.daisy.org/z3986/2005/ncx/" version="2005-1">
<docTitle>
<text>My Title</text>
</docTitle>
<navMap>
<navPoint playOrder="1">
<navLabel>
<text>Introduction</text>
</navLabel>
<content src="Wolves.html#introduction"/>
</navPoint>
<navPoint playOrder="2">
<navLabel>
<text>A Word From the Author</text>
</navLabel>
<content src="Wolves.html#fromtheauthor"/>
</navPoint>
<navPoint playOrder="3">
<navLabel>
<text>Chapter 1 — The Scriptures</text>
</navLabel>
<content src="Wolves.html#Chapter1"/>
</navPoint>
And so on. If I don't need the A for the epub, then I probably don't need the toc.ncx either... but I assume that Calibre takes that into account.
|