Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Formats > Workshop

Notices

View Poll Results: Should eBooks have paragraph spacing
Yes - it helps break up the text 19 35.19%
No - it creates excess page turns 19 35.19%
Don't mind - I really don't think about it 4 7.41%
A bit - how about half a line height gap 12 22.22%
Voters: 54. You may not vote on this poll

Reply
 
Thread Tools Search this Thread
Old 04-22-2009, 02:55 PM   #16
Snowman
Zealot
Snowman can teach chickens to fly.Snowman can teach chickens to fly.Snowman can teach chickens to fly.Snowman can teach chickens to fly.Snowman can teach chickens to fly.Snowman can teach chickens to fly.Snowman can teach chickens to fly.Snowman can teach chickens to fly.Snowman can teach chickens to fly.Snowman can teach chickens to fly.Snowman can teach chickens to fly.
 
Posts: 106
Karma: 3566
Join Date: Aug 2008
Location: London UK
Device: iPhone 5, Kindle K3, Kindle Voyage
I do most of my reading on my Cybook, and experimented for some time to find a font face and size, along with para indent and spacing that I was most comfortable with. I wanted it to look good (for me) primarily on the Cybook, with a PC screen as a secondary device.

I chose a couple of Roger Taylor's Hawklan Series books, since they are simply formatted with <p>text</p>, are nice and large, and I enjoy re-reading them. I found that on the whole I preferred the serif font family, with a font size of third or forth up from the smallest on the Cybook. I'm quite happy with the default 'Georgia' font, though I have tried others.

Having selected the font, I narrowed the spacing options down (using em's and %'s), then fine-tuned using px, to get to my current paragraph css settings, which are:
Code:
p { margin-top: 10px; text-indent: 25px; }
.p { margin-top: 10px; text-indent: 25px; }
The whole process took me about three weeks.

It would be good to be able to change these on the fly, as you can with justification (if it hasn't been forced), but I keep the source, so a minor edit at the top of the file along with a recompile is simple (and easily scriptable) should my reading preferences change.

The .p class, incidentally, is for "paragraphing" within blockquotes using <div class="p">, since the mobi reader always seems to terminate the blockquote at the first </p> that it finds rather than at the closing </blockquote>.

Snowman

Last edited by Snowman; 04-22-2009 at 02:59 PM. Reason: typo correction
Snowman is offline   Reply With Quote
Old 04-22-2009, 03:41 PM   #17
acprinter
Groupie
acprinter ought to be getting tired of karma fortunes by now.acprinter ought to be getting tired of karma fortunes by now.acprinter ought to be getting tired of karma fortunes by now.acprinter ought to be getting tired of karma fortunes by now.acprinter ought to be getting tired of karma fortunes by now.acprinter ought to be getting tired of karma fortunes by now.acprinter ought to be getting tired of karma fortunes by now.acprinter ought to be getting tired of karma fortunes by now.acprinter ought to be getting tired of karma fortunes by now.acprinter ought to be getting tired of karma fortunes by now.acprinter ought to be getting tired of karma fortunes by now.
 
acprinter's Avatar
 
Posts: 156
Karma: 3141364
Join Date: Oct 2008
Location: Jackson, CA
Device: Paperwhite 11th generation
Quote:
Originally Posted by JSWolf View Post
Do you like paragraph spaces on a large screen?
I like paragraph spaces on large screen small screen and on the printed page. After 30 years in a print shop printing books with paragraph spaces on all books we did it is what I like and what I am used to.
acprinter is offline   Reply With Quote
Advert
Old 04-22-2009, 04:00 PM   #18
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: 74,037
Karma: 129333114
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 acprinter View Post
I like paragraph spaces on large screen small screen and on the printed page. After 30 years in a print shop printing books with paragraph spaces on all books we did it is what I like and what I am used to.
Obviously, I've never purchased any of the books you've printed as I would have had to return them. I just find paragraphs spaces ugly and it actually can through off the reading. especially when reading single line dialog or short paragraphs.
JSWolf is offline   Reply With Quote
Old 04-22-2009, 04:01 PM   #19
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: 74,037
Karma: 129333114
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 Snowman View Post
I do most of my reading on my Cybook, and experimented for some time to find a font face and size, along with para indent and spacing that I was most comfortable with. I wanted it to look good (for me) primarily on the Cybook, with a PC screen as a secondary device.

I chose a couple of Roger Taylor's Hawklan Series books, since they are simply formatted with <p>text</p>, are nice and large, and I enjoy re-reading them. I found that on the whole I preferred the serif font family, with a font size of third or forth up from the smallest on the Cybook. I'm quite happy with the default 'Georgia' font, though I have tried others.

Having selected the font, I narrowed the spacing options down (using em's and %'s), then fine-tuned using px, to get to my current paragraph css settings, which are:
Code:
p { margin-top: 10px; text-indent: 25px; }
.p { margin-top: 10px; text-indent: 25px; }
The whole process took me about three weeks.

It would be good to be able to change these on the fly, as you can with justification (if it hasn't been forced), but I keep the source, so a minor edit at the top of the file along with a recompile is simple (and easily scriptable) should my reading preferences change.

The .p class, incidentally, is for "paragraphing" within blockquotes using <div class="p">, since the mobi reader always seems to terminate the blockquote at the first </p> that it finds rather than at the closing </blockquote>.

Snowman
This is what I really like with ePub. You can make it with your paragraph spaces and then I can go in after and fix it to remove them. So in that case, everyone is happy.
JSWolf is offline   Reply With Quote
Old 04-23-2009, 02:59 PM   #20
Timoleon
Time Enough at Last
Timoleon ought to be getting tired of karma fortunes by now.Timoleon ought to be getting tired of karma fortunes by now.Timoleon ought to be getting tired of karma fortunes by now.Timoleon ought to be getting tired of karma fortunes by now.Timoleon ought to be getting tired of karma fortunes by now.Timoleon ought to be getting tired of karma fortunes by now.Timoleon ought to be getting tired of karma fortunes by now.Timoleon ought to be getting tired of karma fortunes by now.Timoleon ought to be getting tired of karma fortunes by now.Timoleon ought to be getting tired of karma fortunes by now.Timoleon ought to be getting tired of karma fortunes by now.
 
Timoleon's Avatar
 
Posts: 387
Karma: 1151316
Join Date: Feb 2008
Location: New England
Device: iPad 3, iPhone 5, Kindle 3, Fire, Sony PRS-350
My preferences:
(a) pBooks --- no paragraph spacing.
(b) eBooks --- paragraph spacing on "larger" screens (prs505,iLiad, etc.)
(c) eBooks --- no paragraph spacing on smaller screens (iPod, Palm Tungsten, etc.)

I think each should be able to "roll their own" --- no hard-coding please!
Timoleon is offline   Reply With Quote
Advert
Old 04-23-2009, 09:12 PM   #21
Ankh
Guru
Ankh ought to be getting tired of karma fortunes by now.Ankh ought to be getting tired of karma fortunes by now.Ankh ought to be getting tired of karma fortunes by now.Ankh ought to be getting tired of karma fortunes by now.Ankh ought to be getting tired of karma fortunes by now.Ankh ought to be getting tired of karma fortunes by now.Ankh ought to be getting tired of karma fortunes by now.Ankh ought to be getting tired of karma fortunes by now.Ankh ought to be getting tired of karma fortunes by now.Ankh ought to be getting tired of karma fortunes by now.Ankh ought to be getting tired of karma fortunes by now.
 
Ankh's Avatar
 
Posts: 714
Karma: 2003751
Join Date: Oct 2008
Location: Ottawa, ON
Device: Kobo Glo HD
The recent aquisition of PRS505 and exposure to ePUB format, triggered, inevitably, a quest for a “perfect CSS”, for a perfect font for my reader. The Net is choke full of sites dedicated to the fine art of typography and type setting.

From what I saw, there is no definite answer to the “paragraph spacing versus indentation” issue. It falls, as far as I understood, into the (artistic) freedom of the one who defines the layout of the text, the one who produces the e-book or web page.

There are pseudo-rules or suggestions, though. It is either indentation, or paragraph spacing, never both. If paragraph spacing is used, the CSS examples that I saw work with rather small values, between 0.1 and 0.3 em. If indentation is employed, the first paragraph of the section is not indented (and “adjacent sibling selectors” in CSS are a must, which works fine on ADE version on PRS505).

As for the personal preferences of the end consumers, it is, IMHO, the defiiciency of our reading platforms, if we can not override the font used in text, change the paragraph spacing, or outright replace the whole setup with our own CSS.

It is not the autors or type setters that should catter to our personal preferences, it is Adobe, Sony who owe us a decent reading software.

My 2 cents.
Ankh is offline   Reply With Quote
Old 04-24-2009, 11:01 AM   #22
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 Ankh View Post
If indentation is employed, the first paragraph of the section is not indented (and “adjacent sibling selectors” in CSS are a must, which works fine on ADE version on PRS505).
Well, that depends on the specific way the CSS is applied. I usually have a class for the first paragraph of a section. And the "no indent in first paragraph" rule is not valid for all languages, in Spanish the first paragraph is indented, for instance.

Quote:
It is not the autors or type setters that should catter to our personal preferences, it is Adobe, Sony who owe us a decent reading software.
Agree 100%.
Jellby is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Paragraph spacing jhempel24 Calibre 5 08-24-2010 12:14 AM
Questions about <p> and <div> and paragraph spacing droople Sigil 7 08-14-2010 12:03 PM
Indentations & Paragraph Spacing Loss Dis Sigil 6 12-03-2009 02:18 PM
Changing paragraph spacing in DRMed epub? salty-horse ePub 4 09-15-2009 06:48 AM
Sony PRS-505, text indents, paragraph spacing pdurrant Sigil 7 08-03-2009 06:03 AM


All times are GMT -4. The time now is 03:13 PM.


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