Register Guidelines E-Books Search Today's Posts Mark Forums Read

Go Back   MobileRead Forums > E-Book Formats > ePub

Notices

Reply
 
Thread Tools Search this Thread
Old 04-29-2010, 03:42 PM   #1
penguintri
Enthusiast
penguintri began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Apr 2010
Device: Paperwhite 2
Gaps at the bottom of pages on prs 300

Not sure if this is the right place but, I'm new to formatting ebooks but I've been playing around on sigil to try and make my ebooks look best on my prs 300. These were all converted in calibre.

Random sized gaps appear at the bottom of pages. I have tried changing things in the css, such as setting all "margin-bottom: 0;" but nothing seems to work. I am trying to get the text to flow all the way to the bottom, as it does in the 4th picture.

I have attached some images of consecutive pages to show the problem. Any help would be great.



Last edited by penguintri; 04-29-2010 at 03:52 PM.
penguintri is offline   Reply With Quote
Old 04-29-2010, 07:48 PM   #2
dmapr
Evangelist
dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.
 
Posts: 469
Karma: 600816
Join Date: Sep 2009
Device: Kobo Aura HD, Kobo Aura One
All I can say is that I see a lot of those on my PRS-900 as well. I read everything at the M size settings and that's where they show. If I go to S then they disappear. I have a feeling it may be an ADE issue with re-flowing the text at these larger font size settings. I see it with "official" (purchased/borrowed) EPUB files as well.
dmapr is offline   Reply With Quote
Old 04-29-2010, 08:20 PM   #3
charleski
Wizard
charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.
 
Posts: 1,196
Karma: 1281258
Join Date: Sep 2009
Device: PRS-505
1) Go into the css and insert
Code:
body {
  widows: 1;
  orphans: 1;
}
2) Make sure that the top and bottom margins for normal paragraphs are set to 0, and that scene breaks (a pause in the text to indicate a break in the narrative) are indicated by setting the margin-top value to the line-height (which defaults to 1.2em) on the paragraph that follows a break. The yawning gulfs you have between paragraphs in the pictures are just a waste of space and their margins aren't synced with the baseline grid, meaning the text wanders around.

It's not an ADE issue. ADE may have a few problems, but I don't know why people blame it for epubs that have been poorly typeset.

Last edited by charleski; 04-30-2010 at 08:24 AM.
charleski is offline   Reply With Quote
Old 04-30-2010, 08:02 AM   #4
penguintri
Enthusiast
penguintri began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Apr 2010
Device: Paperwhite 2
Cheers for the help. I'll try this when I get home from work. Do i need to include [code] in the css? Also should I insert it at the top of the css or in the normal paragraph calibre style?

To change the scene break margin top value do I just change it for the particular calibre entrty (calibre6 I think) that is for the normal paragraph or is there some special entry for the scene break styles?

Cheers again for your help.

Last edited by penguintri; 04-30-2010 at 08:06 AM.
penguintri is offline   Reply With Quote
Old 04-30-2010, 08:53 AM   #5
charleski
Wizard
charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.
 
Posts: 1,196
Karma: 1281258
Join Date: Sep 2009
Device: PRS-505
Quote:
Originally Posted by penguintri View Post
Cheers for the help. I'll try this when I get home from work. Do i need to include [code] in the css? Also should I insert it at the top of the css or in the normal paragraph calibre style?
Ok, if you're editing a book that's been converted with calibre, you'll find that there's a selector named 'calibre' that is used for general body styles. Change it to
Code:
.calibre {
    widows: 1;
    orphans: 1;
    display: block;
    font-size: 1em;
    margin-bottom: 0;
    margin-left: 5pt;
    margin-right: 5pt;
    margin-top: 0;
    page-break-before: always;
    text-align: justify
    }
(added lines highlighted)
Ignore the [code] - I didn't close the bbcode tag in my reply .

Quote:
To change the scene break margin top value do I just change it for the particular calibre entrty (calibre6 I think) that is for the normal paragraph or is there some special entry for the scene break styles?
The class for normal paragraphs should look something like this:
Code:
.calibre15 {
    display: block;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    text-align: left;
    text-indent: 1em
    }
And you want a paragraph coming after a scene break to use a class like this:
Code:
.calibre16 {
    display: block;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 1.2em;
    text-align: left;
    text-indent: 0
    }
The real problem when converting using calibre is to decide whether to tick the 'Remove spacing between paragraphs' box in the 'Look and Feel' tab. Often this can cause calibre to treat all paragraphs the same and remove any scene breaks in the text. Unfortunately, some texts, particularly ones that have been through automatic converters before and not cleaned up properly, have excessive use of the <br/> tag. Often the best solution is to convert to html first, then edit that to remove any garbage and clean up the styling so that normal paragraphs have no margin and an indent whereas those after a scene break have a top margin with no indent, then convert in calibre with the 'Remove spacing...' box unchecked.

For some background on styling with a baseline grid to maintain a vertical rhythm, take a look at this article. It doesn't tell the whole story, but it's a good start.
charleski is offline   Reply With Quote
Old 04-30-2010, 09:21 AM   #6
dmapr
Evangelist
dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.
 
Posts: 469
Karma: 600816
Join Date: Sep 2009
Device: Kobo Aura HD, Kobo Aura One
Quote:
Originally Posted by charleski View Post
1) Go into the css and insert
Code:
body {
  widows: 1;
  orphans: 1;
}
2) Make sure that the top and bottom margins for normal paragraphs are set to 0, and that scene breaks (a pause in the text to indicate a break in the narrative) are indicated by setting the margin-top value to the line-height (which defaults to 1.2em) on the paragraph that follows a break. The yawning gulfs you have between paragraphs in the pictures are just a waste of space and their margins aren't synced with the baseline grid, meaning the text wanders around.

It's not an ADE issue. ADE may have a few problems, but I don't know why people blame it for epubs that have been poorly typeset.
Well, I personally blamed it on ADE because I saw the gap in the middle of a paragraph and it was a pretty impressive gap (see screenshots). The first shows the gap at the medium font size, the second is the same text at small font size.
Attached Thumbnails
Click image for larger version

Name:	screen135.jpg
Views:	271
Size:	99.5 KB
ID:	50815   Click image for larger version

Name:	screen136.jpg
Views:	265
Size:	120.6 KB
ID:	50816  
dmapr is offline   Reply With Quote
Old 04-30-2010, 02:28 PM   #7
charleski
Wizard
charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.
 
Posts: 1,196
Karma: 1281258
Join Date: Sep 2009
Device: PRS-505
Quote:
Originally Posted by dmapr View Post
Well, I personally blamed it on ADE because I saw the gap in the middle of a paragraph and it was a pretty impressive gap (see screenshots). The first shows the gap at the medium font size, the second is the same text at small font size.
That gap is happening because the css is left at the default widows and orphans settings, so the renderer has to move the last 2 lines of the paragraph onto the next page (if it left them on the same page then there'd be a one line orphan). Basically, the gap is there because it's being told to leave it.
charleski is offline   Reply With Quote
Old 04-30-2010, 05:17 PM   #8
DaleDe
Grand Sorcerer
DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.
 
DaleDe's Avatar
 
Posts: 11,470
Karma: 13095790
Join Date: Aug 2007
Location: Grass Valley, CA
Device: EB 1150, EZ Reader, Literati, iPad 2 & Air 2, iPhone 7
Quote:
Originally Posted by charleski View Post
That gap is happening because the css is left at the default widows and orphans settings, so the renderer has to move the last 2 lines of the paragraph onto the next page (if it left them on the same page then there'd be a one line orphan). Basically, the gap is there because it's being told to leave it.
It also happens in paper books. The only difference is that the publisher adjusts the line spacing to take up the gap. Hopefully someday the eBook readers will be smart enough to adjust the line spacing. It is not difficult to solve.

Dale
DaleDe is offline   Reply With Quote
Old 04-30-2010, 06:56 PM   #9
charleski
Wizard
charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.charleski ought to be getting tired of karma fortunes by now.
 
Posts: 1,196
Karma: 1281258
Join Date: Sep 2009
Device: PRS-505
Quote:
Originally Posted by DaleDe View Post
It also happens in paper books. The only difference is that the publisher adjusts the line spacing to take up the gap. Hopefully someday the eBook readers will be smart enough to adjust the line spacing. It is not difficult to solve.

Dale
From what I've learned, a proper typographer will solve the problem by balancing out the gap over several pages. So instead of having a 3-line gap on one page, there will be 1-line gaps at the bottom of the surrounding 3 pages. To quote Bringhurst, "Balance facing pages not by adding extra lead or puffing up the word space, but by exporting or importing single lines to and from the preceding or following spreads."

This method retains the vertical rhythm of the type and reduces both the frequency and amplitude of any changes in page length. Implementing it in a relowable system involves a degree of recursion, as the line-shifts obviously have the ability to introduce new orphan/widow problems, but it provides a far better solution than simply blowing up the line-height.
charleski is offline   Reply With Quote
Old 04-30-2010, 08:24 PM   #10
DaleDe
Grand Sorcerer
DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.DaleDe ought to be getting tired of karma fortunes by now.
 
DaleDe's Avatar
 
Posts: 11,470
Karma: 13095790
Join Date: Aug 2007
Location: Grass Valley, CA
Device: EB 1150, EZ Reader, Literati, iPad 2 & Air 2, iPhone 7
Quote:
Originally Posted by charleski View Post
From what I've learned, a proper typographer will solve the problem by balancing out the gap over several pages. So instead of having a 3-line gap on one page, there will be 1-line gaps at the bottom of the surrounding 3 pages. To quote Bringhurst, "Balance facing pages not by adding extra lead or puffing up the word space, but by exporting or importing single lines to and from the preceding or following spreads."

This method retains the vertical rhythm of the type and reduces both the frequency and amplitude of any changes in page length. Implementing it in a relowable system involves a degree of recursion, as the line-shifts obviously have the ability to introduce new orphan/widow problems, but it provides a far better solution than simply blowing up the line-height.
I agree when you can see two facing pages it needs that kind of attention but we have nothing and only one page to look at. Adjusting the line height would be 10 times better than what we have now.

Dale
DaleDe is offline   Reply With Quote
Old 04-30-2010, 09:24 PM   #11
dmapr
Evangelist
dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.
 
Posts: 469
Karma: 600816
Join Date: Sep 2009
Device: Kobo Aura HD, Kobo Aura One
Quote:
Originally Posted by charleski View Post
That gap is happening because the css is left at the default widows and orphans settings, so the renderer has to move the last 2 lines of the paragraph onto the next page (if it left them on the same page then there'd be a one line orphan). Basically, the gap is there because it's being told to leave it.
That's exactly why I insist that ADE has an issue. I'm attaching a screen shot that shows both "pages" to illustrate the problem better.
  1. The book has no widow/orphan settings in the CSS
  2. The W3C says that the default values are 2 & 2
  3. The gap is three lines tall on the left page
  4. The remainder of the paragraph is four lines tall on the right page.
Under the circumstances shouldn't there be two more lines of text on the left page?
Attached Thumbnails
Click image for larger version

Name:	screen139.jpg
Views:	286
Size:	98.4 KB
ID:	50836  
dmapr is offline   Reply With Quote
Old 05-01-2010, 03:43 AM   #12
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,514
Karma: 18512745
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
ADE (at least in the Cybook) has an issue with very long paragraphs, they are cut mid-page to continue in the following page.
Jellby is offline   Reply With Quote
Old 05-01-2010, 04:07 AM   #13
HarryT
eBook Enthusiast
HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.HarryT ought to be getting tired of karma fortunes by now.
 
HarryT's Avatar
 
Posts: 85,544
Karma: 93383043
Join Date: Nov 2006
Location: UK
Device: Kindle Oasis 2, iPad Pro 10.5", iPhone 6
Quote:
Originally Posted by Jellby View Post
ADE (at least in the Cybook) has an issue with very long paragraphs, they are cut mid-page to continue in the following page.
I noticed that happen on my Sony PRS-600, but the Neo, which uses a later version of ADE, doesn't do it, so I guess they've fixed it.
HarryT is offline   Reply With Quote
Old 05-04-2010, 05:11 AM   #14
penguintri
Enthusiast
penguintri began at the beginning.
 
Posts: 29
Karma: 10
Join Date: Apr 2010
Device: Paperwhite 2
Cheers charleski adding
body {
widows: 1;
orphans: 1;
really helped it made the gap at the bottom of the page just one line everytime. This worked on almost all of my ebooks except one that looked like it had some horrible formatting.

I couldn't do anything with the scene breaks as my converted books had no <br/> tags and the whole body of the text was just in the one constant calibre style, it never changed after a paragraph.
penguintri is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
My thoughts, PRS-300, PRS-600, PRS-505, PRS-700, Kindle 2 zacheryjensen Sony Reader 78 12-05-2010 07:33 PM
PRS-300 $150, PRS-600 $170 + $25 Gift Card; PRS-900 $250 + extra Battery @SonyUSA Lilly Deals and Resources (No Self-Promotion or Affiliate Links) 1 07-25-2010 02:14 PM
New hack PRS-505: multi status line with %read, time&pages reading, pages per minute. Car105 Sony Reader Dev Corner 5 01-03-2010 10:03 AM
Canadian perspective of the recent Sony ebook readers - PRS-300/PRS-600/PRS-2121 nrapallo News 1 08-29-2009 10:38 AM


All times are GMT -4. The time now is 10:55 AM.


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