---
slug: "iBooksERRORITMS-5107の対処方法"
title: "iBooks ERROR ITMS-5107 の対処方法"
description: "\n\n\niTunes Store に、iBooks を iTunes Producer で EPUB をアップロードしようとして、"
url: "https://www.ytyng.com/blog/iBooksERRORITMS-5107の対処方法"
publish_date: "2013-11-26T05:38:00Z"
created: "2013-11-26T05:38:00Z"
updated: "2026-02-27T10:44:34.549Z"
categories: ["電子ブック"]
keywords: ""
featured_image_url: "https://media.ytyng.com/resize/20230812/06d591d1638a452f8f2f279ffceeef53.png.webp?width=768"
has_video: false
has_music: false
video_urls: []
music_urls: []
lang: "ja"
---

# iBooks ERROR ITMS-5107 の対処方法

<div class="document">


<p>iTunes Store に、iBooks を iTunes Producer で EPUB をアップロードしようとして、</p>
<pre class="literal-block">ERROR ITMS-5107: “◯◯.epub: Fixed-layout books must supply a landmarks" at Book (MZItmspBookPackage)
</pre>
<p>というエラーが出たら…</p>
<p>まず、content.opf で、</p>
<pre class="literal-block">&lt;item id="toc" properties="nav" href="nav.xhtml" media-type="application/xhtml+xml" /&gt;
</pre>
<p>こんな感じで、navに指定してあるファイルを開く。 nav.xhtml とか toc.xhtml とか。</p>
<p>↓</p>
<p>このような構造にする</p>
<pre class="literal-block">&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;!DOCTYPE html &gt;
&lt;html xmlns:epub="http://www.idpf.org/2007/ops" lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"&gt;
  &lt;head&gt;
    &lt;title&gt;Language Comic KATSUSHIKA HOKUSAI&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;nav epub:type="toc" id="toc"&gt;
      &lt;h1&gt;contents&lt;/h1&gt;
      &lt;ol&gt;
        &lt;li&gt;
          &lt;a href=“◯◯.xhtml”&gt;◯◯&lt;/a&gt;
        &lt;/li&gt;
      &lt;/ol&gt;
    &lt;/nav&gt;

    &lt;nav epub:type="landmarks"&gt;
        &lt;ol&gt;
        &lt;li&gt;&lt;a href=“◯◯.xhtml" epub:type="cover"&gt;◯◯&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=“◯◯.xhtml" epub:type="bodymatter"&gt;◯◯&lt;/a&gt;&lt;/li&gt;
        &lt;/ol&gt;
    &lt;/nav&gt;

  &lt;/body&gt;
&lt;/html&gt;
</pre>
<p>nav epub:type=“landmarks” の中に、 a epub:type=“bodymatter が必要。</p>
<div class="section" id="id1">
<h3>参考</h3>
<p>ERROR ITMS-5107:...: Apple Support Communities</p>
<p><a class="reference external" href="https://discussions.apple.com/thread/4570847">https://discussions.apple.com/thread/4570847</a></p>
</div>
</div>
