Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Formats > ePub

Notices

Reply
 
Thread Tools Search this Thread
Old 07-28-2014, 10:34 AM   #1
zonker
Member
zonker began at the beginning.
 
Posts: 18
Karma: 10
Join Date: May 2014
Location: Italy
Device: kindle
Backward-compatible EPUB 3 files in 4 steps?

Hi, I'm writing an ebook template with Sigil and I'd like it could be a backward compatible epub 3 file.

Is it enough change the following things?
  • put version="3.0" instead of 2.0 inside <package>
  • insert a Navigation document
  • indicate cover in <manifest>: <item id="cover-image" properties="cover-image" href="Images/front_cover.jpg" media-type="image/jpeg"/>
  • add “dc:terms modified” metadata

something else? should be this fully compatible with old ereaders?
zonker is offline   Reply With Quote
Old 07-28-2014, 10:35 AM   #2
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 73,983
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Unless you are doing something that needs to be ePub 3, stick with ePub 2. It's a lot more compatible and a lot less hassle when you get complaints that your ePub 3 (that should have been ePub 2) it doesn't work on some readers.
JSWolf is offline   Reply With Quote
Advert
Old 07-28-2014, 10:38 AM   #3
zonker
Member
zonker began at the beginning.
 
Posts: 18
Karma: 10
Join Date: May 2014
Location: Italy
Device: kindle
Ok, but those changes make it less compatible? And anyway are they enough to to make it a backward-compatible EPUB 3 file?
zonker is offline   Reply With Quote
Old 07-28-2014, 10:52 AM   #4
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 73,983
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by zonker View Post
Ok, but those changes make it less compatible? And anyway are they enough to to make it a backward-compatible EPUB 3 file?
Are you making these changes just because you can or are you makes a true ePub 3? If you aren't making a true ePub 3, just make an ePub 2.

I cannot say if just those changes will work. I've not fiddled with ePub 3 as I have no need for it.
JSWolf is offline   Reply With Quote
Old 07-28-2014, 11:16 AM   #5
zonker
Member
zonker began at the beginning.
 
Posts: 18
Karma: 10
Join Date: May 2014
Location: Italy
Device: kindle
thanks, yes probably it's better to make an epub 2. but I'd like a better-looking index for example in iBooks.
zonker is offline   Reply With Quote
Advert
Old 07-28-2014, 12:14 PM   #6
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,516
Karma: 18512745
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
Quote:
Originally Posted by zonker View Post
should be this fully compatible with old ereaders?
The <meta> tag should not affect old readers at all. The navigation document, as long as it's valid XHTML, and properly included in the manifest and spine, is OK. The properties="cover-image" and version="3.0" could potentially cause a problem if some reader is particularly picky in its validation, but I don't think it will matter in practice. Still, by declaring the epub as version 3, you are looking for problems, any epub 2 reader could refuse to open the file without further parsing.
Jellby is offline   Reply With Quote
Old 07-28-2014, 12:26 PM   #7
zonker
Member
zonker began at the beginning.
 
Posts: 18
Karma: 10
Join Date: May 2014
Location: Italy
Device: kindle
and if I don't declare epub as 3.0 etc., should the navigation document still work in iBooks?
zonker is offline   Reply With Quote
Old 07-28-2014, 03:11 PM   #8
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 73,983
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by zonker View Post
thanks, yes probably it's better to make an epub 2. but I'd like a better-looking index for example in iBooks.
When you are making an eBook for iBooks, it's OK to do it however it works in iBooks. Just don't expect to make an ePub that does what you want in iBooks and works elsewhere. Best way to do it is to make to different version. One being ePub 2 and the other being for iBooks.
JSWolf is offline   Reply With Quote
Old 07-29-2014, 05:49 AM   #9
zonker
Member
zonker began at the beginning.
 
Posts: 18
Karma: 10
Join Date: May 2014
Location: Italy
Device: kindle
Ok, epub 3 can wait.
Thanks.
zonker is offline   Reply With Quote
Old 07-29-2014, 05:57 AM   #10
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 73,983
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by zonker View Post
Ok, epub 3 can wait.
Thanks.
Oh and speaking of iBooks, it is possible to make an eBook that will work in iBooks for iOS 7, but not in iBooks for iOS 5 (1st generation iPad).
JSWolf is offline   Reply With Quote
Old 07-29-2014, 06:04 AM   #11
zonker
Member
zonker began at the beginning.
 
Posts: 18
Karma: 10
Join Date: May 2014
Location: Italy
Device: kindle
sure, we don't like easier things...

but what's the best solution for making an epub 3 just for iBooks (iOs 7)? four steps above with sigil?
zonker is offline   Reply With Quote
Old 07-29-2014, 06:10 AM   #12
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 73,983
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
In making ePub 3 for iBooks, Sigil is not what you want. It's ePub 2 and doesn't handle all the iBooks stuff.
JSWolf is offline   Reply With Quote
Old 07-31-2014, 12:27 AM   #13
odedta
Addict
odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.
 
Posts: 398
Karma: 96448
Join Date: Dec 2013
Device: iPad
zonker, just download a sample ePub 3 from the google sample section (google: epub 3 examples) and go from there.
odedta is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Backward-compatible EPUB 3 files with Sigil in 4 steps? zonker Sigil 4 07-25-2014 11:53 AM
Just how compatible is Epub and Mobi? avid01 General Discussions 19 12-28-2012 07:33 PM
Steps for creating an ePub from Indeisgn CS3 Adjust ePub 20 06-03-2011 08:49 AM
.ePub compatible? duduche33 Bookeen 8 06-10-2009 06:36 AM


All times are GMT -4. The time now is 09:18 AM.


MobileRead.com is a privately owned, operated and funded community.