aboutsummaryrefslogtreecommitdiff
path: root/test/tables.typst
AgeCommit message (Collapse)Author
2024-10-08Typst writer: make `smart` extension work.John MacFarlane
If `smart` is not enabled, a command in the default template will disable smartquote substitutions. When `smart` is enabled, render curly apostrophes as straight and escape straight apostrophes. When `smart` is disabled, render curly apostrophes as curly and don't escape straight apostrophes. And similarly for quotes, em and en dashes. This should give more idiomatic typst output, with fewer unnecessary escapes. Closes #10271.
2024-03-20Typst writer: support Typst 0.11 table features. (#9593)John MacFarlane
* Typst writer: support Typst 0.11 table features. - colspans - rowspans - cell alignment overrides - relative column widths - header and footer - multiple table bodies with intermediate headers Row heads are not yet supported. The default typst template has been modified so that tables don't have lines by default. As is standard with pandoc, we only add a line under a header or over a footer. However, a different default stroke pattern can easily be added in a template. Closes #9588.
2024-03-16Typst writer: don't add inset to tables.John MacFarlane
This hardcoded `inset` prevented global customizations in a template. Closes #9580.
2024-03-14Typst writer: add 'kind' parameter to figures.John MacFarlane
This helps to distinguish tables from other figures for purposes of labeling and numbering. Closes #9574.
2023-11-15Typst writer: better handling of tables with captions.John MacFarlane
We now put these in a figure with a caption argument. Closes #9194.
2023-03-27Typst writer: support column aligns in tables.John MacFarlane
2023-03-25Add typst writer.John MacFarlane
See #8713.