Did you embed fonts into the epub when you made it?
I had saved this from Sigil
Quote:
Why doesn't my font show up in iBooks?
If you embed a font in your EPUB, iBooks requires a non-standard file in the EPUB to tell it to use your font. This cannot be done in Sigil.
Create a file called com.apple.ibooks.display-options.xml with a text editor and put these lines into it:
<?xml version="1.0" encoding="UTF-8"?>
<display_options>
<platform name="*">
<option name="specified-fonts">true</option>
</platform>
</display_options>
Then use an archive manager to unzip or access the EPUB file. Add the xml file you created to your EPUB in the META-INF directory, then re-zip your EPUB.
|