What is the correct tagging for table cells that span multiple rows? #180
Unanswered
mbertucci47
asked this question in
Q&A
Replies: 1 comment 1 reply
-
The table model in PDF tagging mostly follows HTML here, so the correct behavior is similar to how this would work in HTML: The |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Here's an example that compares the tagging structure tree of the kernel
\multicolumn
with the multirow package's\multirow
.As you can see,
\multicolumn
gives a single cell for the first row, while\multirow
produces two cells: in the first row, the content, and in the second row, an empty cell.For a properly tagged table, what is the correct tagging for a cell than spans multiple rows? Should it match the behavior of
\multicolumn
but "transposed", or is the current tagging correct? My guess is that the current behavior is correct because otherwise there is no way to tell which column the "D" in the example should appear in.P.S. I'm aware no attempt has been made thus far to make
\multirow
tagging correct. I am interested in whether the "out of the box" behavior is correct.Beta Was this translation helpful? Give feedback.
All reactions