Quote:
Originally Posted by SBT
Ah, I think I know the answer to this one...
No.
I don't know if it is actually a part of the EPUB specification, and I'm too lazy to look it up, but all the readers I've come across have an implicit page break on new files. There's no way to work around it, I'm afraid, apart from writing your own custom reader...
|
Um, what about the css
Code:
page-break-before: avoid;


Where did that go, exactly? It was created for exactly this usage situation, and I can't imagine any reader would refuse to respect that.
Put that in the top element of each new page (or alternatively, use page-break-after: avoid; at the END of each page). In fact, calibre will automatically split all files above a certain size (configurable) during every ePub conversion, for EXACTLY this reason, and takes care of adding the page-break-(whichever):avoid.
Although this shouldn't be a problem in any book that splits on each chapter...