View Single Post
Old 09-10-2023, 01:32 PM   #10
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 46,639
Karma: 169712392
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
For what it is worth, I've created a couple of ebooks for kids. I used the image only approach so each page is an image using an svg wrapper to fit it to the page. Adding a negative left and right margin helped to reduce the margins when I converted a couple to KF8/azw3 for one kid.

The major disadvantage to the image only approach is that the final book size is overly large.

The issue with an Fixed Layout (AKA FLO) ePub is that every element is set to a fixed location on the page. No reflow, no changing font sizes, etc. You may as well use a PDF. Just changing the OPF by adding:

Code:
    <meta property="rendition:layout">pre-paginated</meta>
    <meta property="rendition:orientation">portrait</meta>
    <meta property="rendition:spread">none</meta>
to the OPF will not help.

edit: Attached sample for one sentence in a FLO ePub3.

Spoiler:
<div class="liw c44 c45 c46 c47 c48 c175 c176 c177 c178 c179 c17A c6F c7 c70" style="top:931px;min-width:471px">
<span class="w c30 c95 f22 c71"> At </span><span class="w c99 f22 c71">the </span><span class="w cC8 cA3 f22 c71">heart </span><span class="w c5C c8B f22 c71">of </span><span class="w c8D cC6 f22 c71">Hogwarts </span><span class="w c9F c21 cA9 f22 c71">School</span>
</div>

<div class="liw c17A c6F c7 c70 c17B" style="top:976px">
<span class="w c136 c8A f22 c71"> of </span><span class="w c96 f22 c71" style="width:168px">Witchcraft </span><span class="w c7B f22 c71">and </span><span class="w c17C c82 f22 c71">Wizardry </span><span class="w c21 f22 c71" style="width:47px">are</span>
</div>

<div class="liw c44 c45 c46 c47 c48 c17A c6F c7 c70 cAC cAD cAE cAF cB0 c17D" style="top:1021px">
<span class="w c148 c12E f22 c71"> the </span><span class="w cA3 f22 c71" style="width:139px">teachers </span><span class="w c82 cD8 f22 c71">that </span><span class="w cAA c17E f22 c71">reside </span><span class="w c21 c94 cA5 f22 c71">there.</span>
</div>




All that to put this sentence on the screen:

At the heart of Hogwarts School of Witchcraft and Wizardry are the teachers that reside there.

Last edited by DNSB; 09-10-2023 at 01:41 PM.
DNSB is offline   Reply With Quote