View Single Post
Old 04-25-2023, 01:25 AM   #9
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,739
Karma: 24031403
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by helens View Post
Incidentally, there's nothing I can do about it now (and it's not a major issue), but when reading the file on my (older) Kindle, the Table of Contents is greyed out.
On what Kindle model is the toc greyed out?
Did you convert the .epub file with Calibre to MOBI, AZW3 or KFX or did you use Send to Kindle?

Quote:
Originally Posted by helens View Post
Does anyone know which command (and on which page) would have enabled the toc in the navigation menu?
Depending on the target format, EPUB converters will usually look for the HTML TOC in epub3 books in two places:

The landmarks section in the NAV document (toc.xhtml):

Code:
  <nav epub:type="landmarks" id="landmarks" hidden="">
    <h2>Landmarks</h2>
    <ol>
      <li>
        <a epub:type="toc" href="toc.xhtml">Table of Contents</a>
      </li>
    </ol>
  </nav>
or the guide section in the .opf file:

Code:
  <guide>
    <reference type="toc" title="Table of Contents" href="toc.xhtml"/>
  </guide>
Please post both sections.

Quote:
Originally Posted by Quoth View Post
The Kindle Preview is not very useful for compatibility.
However, since Kindle Previewer is good enough for testing whether the toc menu option will be greyed out on Kindle devices, the OP might want to download and install it.

Last edited by Doitsu; 04-26-2023 at 07:05 AM.
Doitsu is offline   Reply With Quote