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
{{ message }}
This repository has been archived by the owner on Jan 25, 2018. It is now read-only.
It is customary for table footnotes to be attached to the table. It is unclear how best to capture that semantically, though. There are various options, none really pleasant:
Put them in the figcaption for the figure that contains the table. (That's what I've implemented so far, but it's not great.)
Put them in the table's own caption — but that seem wrong, especially since that is already where we put the caption.
Put them in a tfoot cell that colspans the width of the table. Sort of sensible, but the colspan bit feels hacky.
Put them in an ol inside the figure, after the table. This is legit. Note that semantically that means that the figure is also representing the ol — but I think that's not incorrect. The ol would have the right DPUB ARIA markup of course.
I tend to lean towards the last option. Any thoughts?
The text was updated successfully, but these errors were encountered:
Is there always only one table per figure? [Many publications have multiple tables, figures, etc. in the same container]. If so then I'd agree with [4] , else we have to have something attached to the table itself which would have to be [2] or [3] - in which case I'd favour [2].
This is something that is not described yet but that we need to cover: figure composition (#53). The theory is that every table is always contained in a figure, so we always have a single container available. That has many advantages in terms of styling and modelling, including the one you point at here.
Then if you can compose figures inside of another. So if you have two tables in a table figure they become 1A and 1B.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It is customary for table footnotes to be attached to the table. It is unclear how best to capture that semantically, though. There are various options, none really pleasant:
figcaption
for thefigure
that contains thetable
. (That's what I've implemented so far, but it's not great.)table
's owncaption
— but that seem wrong, especially since that is already where we put the caption.tfoot
cell that colspans the width of the table. Sort of sensible, but thecolspan
bit feels hacky.ol
inside thefigure
, after thetable
. This is legit. Note that semantically that means that thefigure
is also representing theol
— but I think that's not incorrect. Theol
would have the right DPUB ARIA markup of course.I tend to lean towards the last option. Any thoughts?
The text was updated successfully, but these errors were encountered: