I wanna make a book with parallel translation. It supposed to have table with to columns - one have text on source language, the other on target language.
I found, that I can do it easy with fb2
, just write a xml code by python script. But my ebook read it ugly - the first column much wider than the second. (see picture)
Code example:
<section><table>
<tr>
<td> Lang1 </td>
<td> Lang2 </td>
</tr>
<tr>
... the same ...
</tr>
</table></section>
I don't work with web design, and maybe dont understand some simple thing. How can I set size of columns? Or maybe I should use some other format (epub
)
It essential, that I need format, which I can read on ebook comfortable. Books in PDF
format are bad for this, cause I can't change font and don't want zoom.
Thanks for you answers!