Fixed layout pass the epubcheck but fails to upload at itunes

3 posts / 0 new
Last post

Please help me I get this error when I try to publish epub3 file at itunes.

It passes epubcheck test but fails for publishing.

ERROR ITMS-5107: "asset.epub: Fixed-layout books must supply a landmarks" at Book (MZItmspBookPackage)

Thanks.

Although not a requirement of EPUB, Apple requires a landmarks nav be included in your navigation document. I believe all you need to do is add an entry for the start location of the body matter, similar to this:

<nav epub:type="landmarks">
    <h2>Guide</h2>
    <ol>
        <li><a epub:type="bodymatter" href="content.html#bodymatter">Start of Content</a></li>
    </ol>
</nav>

See http://www.idpf.org/epub/30/spec/epub30-contentdocs.html#sec-xhtml-nav-def-types-landmarks for more information about this nav element.

@matt.garrish thank you!!! i love of http://omai.mobi

Secondary menu