iBooks ERROR ITMS-5107 の対処方法

投稿者: ytyng 10年, 4ヶ月 前

iTunes Store に、iBooks を iTunes Producer で EPUB をアップロードしようとして、

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

というエラーが出たら…

まず、content.opf で、

<item id="toc" properties="nav" href="nav.xhtml" media-type="application/xhtml+xml" />

こんな感じで、navに指定してあるファイルを開く。 nav.xhtml とか toc.xhtml とか。

このような構造にする

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html >
<html xmlns:epub="http://www.idpf.org/2007/ops" lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>Language Comic KATSUSHIKA HOKUSAI</title>
  </head>
  <body>
    <nav epub:type="toc" id="toc">
      <h1>contents</h1>
      <ol>
        <li>
          <a href=“◯◯.xhtml”>◯◯</a>
        </li>
      </ol>
    </nav>

    <nav epub:type="landmarks">
        <ol>
        <li><a href=“◯◯.xhtml" epub:type="cover">◯◯</a></li>
        <li><a href=“◯◯.xhtml" epub:type="bodymatter">◯◯</a></li>
        </ol>
    </nav>

  </body>
</html>

nav epub:type=“landmarks” の中に、 a epub:type=“bodymatter が必要。

参考

ERROR ITMS-5107:...: Apple Support Communities

https://discussions.apple.com/thread/4570847

現在未評価

コメント

アーカイブ

2024
2023
2022
2021
2020
2019
2018
2017
2016
2015
2014
2013
2012
2011