Tables with typst: On captions and overflow #14385
-
Descriptionquarto 1.9.37/Windows/RStudio I cannot make sense of the pdf generated with quarto -> typst when tables overflow a page and have or have not labels. See https://github.com/orgs/quarto-dev/discussions/11456#discussioncomment-11274099, where @cscheid summarized the mystery as follow: "Captions in figures without labels are best thought of as "Pandoc captions", not "Quarto captions". See also #9369 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
If Typst can't fit a table in either dimension, it will squish it. The usual workaround for tables with many rows is to allow figures to break across pages so that the table can too. E.g. Off and on we consider adding this to our template. Properly scoped to our tables, this would be: #show figure.where(kind: "quarto-float-tbl"): set block(breakable: true) |
Beta Was this translation helpful? Give feedback.
If Typst can't fit a table in either dimension, it will squish it. The usual workaround for tables with many rows is to allow figures to break across pages so that the table can too.
E.g.
Off and on we consider adding this to our template. Properly scoped to our tables, this would be: