You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The web page with the table of contents tries to dedicate a right column to an image of the book and download links. This leaves the main (central) column narrower, and causes some ToC entries to require wrapping on a second line. This generally occurs for 3 items in appendices. The way the first 2 appendix titles displays (in both Firefox 133.0 and Google Chrome) is arguably incorrect, as can be seen in the screenshot below:
The format of A1.4's title is not great but acceptable, however the title of A1 itself has so much vertical space between its 2 lines that the "Environments" line is closer to A1.1 than to the beginning of the title.
This space is caused by the line-height CSS property, which comes from this rule:
Although the unwarranted leading should be fixed, this issue should not have been so exposed. There are several ways to avoid wrapping altogether:
Shorten titles; the titles would be less redundant by making an Appendix section and put all appendices under it.
Widen the ToC.
On my screen, the viewport has a width of 2560 pixels. Using only 940 is quite a waste.
The ToC itself typically gets no more than 394 pixels, mostly due to the left column and the floating right column for traditional versions. It would be trivial to save 36 pixels by removing the superfluous left margin. It would also be possible to waste less on the right column:
Most easily by removing the superfluous 40 pixels right margin.
Or by just merging it in the left column.
The text was updated successfully, but these errors were encountered:
The web page with the table of contents tries to dedicate a right column to an image of the book and download links. This leaves the main (central) column narrower, and causes some ToC entries to require wrapping on a second line. This generally occurs for 3 items in appendices. The way the first 2 appendix titles displays (in both Firefox 133.0 and Google Chrome) is arguably incorrect, as can be seen in the screenshot below:

The format of A1.4's title is not great but acceptable, however the title of A1 itself has so much vertical space between its 2 lines that the "Environments" line is closer to A1.1 than to the beginning of the title.
This space is caused by the
line-height
CSS property, which comes from this rule:Although the unwarranted leading should be fixed, this issue should not have been so exposed. There are several ways to avoid wrapping altogether:
The text was updated successfully, but these errors were encountered: