Quote:
Originally Posted by polizoto
After using the page-list plug in and then exporting to EPUB3 with EPUB3-itizer, I am still not getting the list of page numbers in my TOC. Any thoughts?
|
If you've used the latest version of the epub3 plugin, the page list section will be automatically hidden via css.
If
nav.xhtml actually contains a page-list section, locate the style section and delete the page-list id marked in Magenta:
Code:
<style type="text/css">
nav#landmarks, nav#page-list { display:none; }
ol { list-style-type: none; }
</style>
Note that some ePub3 apps, e.g. Azardi, actually ignore the nav page-list section and won't display page numbers unless they've been marked using the following syntax:
Code:
<span epub:type="pagebreak" id="page1">1</span>
Other ePub3 apps won't display
pagebreak page numbers in the book at all.
What app did you use for testing? If you used iBooks you'll need to activate the page number display, because they're hidden by default.