View Single Post
Old 01-02-2020, 11:35 AM   #3
abbrowna
Junior Member
abbrowna began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Jan 2020
Device: iphone7
Quote:
Originally Posted by Doitsu View Post
You can define your own page numbers by adding a page-list nav section to the nav document.
If you're also familiar with Sigil, you might find my Pagelist plugin helpful.
Note that you'll have to select the Tap to show printed page numbers option in the toc to display page-list page numbers in iBooks/Apple Books.
So, I actually landed on that particular site during my days of frustration and here's what I tried... Because there are over 1000 songs/chapters, I created a page-list nav element only listing the first 3 chapters and the title page file. However, I did not refer to any page-break within the song only listing the xhtml like so...
Code:
<nav epub:type="page-list" hidden="hidden">
 <ol>
   <li><a href="titlepage.xhtml"></a></li>
   <li><a href="song_1.xhtml">1</a></li>
   <li><a href="song_2.xhtml">2</a></li>
   <li><a href="song_3.xhtml">3</a></li>
 </ol>
</na
This had no effect in the Books app (iphone7). I wonder if the mistake is in not adding actual page-breaks, not including all chapters/song or both? I really appreciate your help by the way.
abbrowna is offline   Reply With Quote