Specifying Reading Starting Point in epub3

2 posts / 0 new
Last post

Hi,
Just wondering how to specify the starting point for a reader who first opens the epub3. Do you include a specific line of code in the guide section of the opf file, or is this specified in the toc.xhtml file?
Thanks so much for any help you can give me!

The recommended method is to provide a landmark like this in the navigation document:
 
<nav epub:type="landmarks">
  <ol>
    <li><a href="chapter01.xhtml" epub:type="bodymatter">Start Reading</a></li>
   ...
  </ol>
</nav>

Secondary menu