0

我创建了一个 epub 3.0 文件,该文件具有如下字体嵌入

     @font-face{
               font-family:Myfont;
               font-weight:normal;
               font-style:normal;
               src:url("Fonts/footfont.otf");
               }

我将字体应用于标签,如下所示:

    p{
      font-family:"Myfont";
      font-size:12pt;
     }

我还将 com.apple.ibooks.display-options.xml 包含在 META-INF 中。我可以在 ADE 中看到我的嵌入字体,但在 ipod iTouch 中看不到它。可能是什么原因。有人可以帮忙吗?

4

1 回答 1

1

您是否尝试过添加:

<meta property="ibooks:specified-fonts">true</meta>

到.opf 文件?(iBookstoreAssetGuide5.1.pdf 第 26 页)

于 2012-12-20T14:12:24.397 回答