View Single Post
Old 04-05-2023, 03:51 PM   #8
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by Paolo Carnovalin View Post
My problem was not formatting the code, but explaining to my client that when inserting such a large element into an ePub you can never be sure how this element will be seen by the person reading the book.
Yes, but if you show an example of one of these large, multi-screen tables, perhaps more specific advice can be given.

Quote:
Originally Posted by Paolo Carnovalin View Post
The only possible loophole is the use of vertical scrolling, which allows the tables not to be truncated; [...]
Off the top of my head, I can't think of many (any?) tables that would make sense in a single page, but wouldn't if split across pages.

What can happen though... is accidentally missing your <thead> + <th>. Those two let headers duplicate across screens, helping make the multi-page table be more readable.

Without <thead> + <th>:

Code:
Position    FirstName  LastName
1
2
3
4
[...page break...]
5
6
7
8
[...page break...]
9
10
vs. With <thead> + <th>:

Code:
Position    FirstName  LastName
1
2
3
4
[...page break...]
Position    FirstName  LastName
6
7
8
[...page break...]
Position    FirstName  LastName
9
10
The 1st type, you might get lost and forget which column is which.

The 2nd type, the column headers follow you across pages.

- - -

Side Note: And if the table doesn't make sense, then I strongly recommend reading the advice/book I recommended in 2021.

What most likely happened is the original author designed a "table-like graphic".

For more "table design" best practices info, also see some of my comments from a few months ago:

If you squash this problem at the source—and teach them better and clearer ways of representing the original data—you can also help all their future documents as well. (And the readers will thank you too!)

Last edited by Tex2002ans; 04-05-2023 at 03:57 PM.
Tex2002ans is offline   Reply With Quote