Skip to content

v0.0.6

Compare
Choose a tag to compare
@PgBiel PgBiel released this 21 Oct 21:30
· 61 commits to main since this release
3a45350

What's Changed

  • Added support for RTL tables with rtl: true (#58).
    • Default Typst tables are automatically flipped horizontally when using set text(dir: rtl), however we can't detect that setting from tablex at this moment (it isn't currently possible to fetch set rules in Typst).
    • Therefore, as a way around that, you can now specify #tablex(rtl: true, ...) to flip your table horizontally if you're writing a document in RTL (right-to-left) script. (You can use e.g. #let old-tablex = tablex followed by #let tablex(..args) = old-tablex(rtl: true, ..args) to not have to repeat the rtl parameter every time.)
  • Added support for box's dictionary inset syntax on tablex (#54).
    • For instance, you can now do #tablex(inset: (left: 5pt, top: 10pt, rest: 2pt), ...).
  • Fixed errors when using floating point strokes or other more complex strokes (#55).
  • Added full compatibility with the new Typst 0.8.0 type system (#69).
  • Added info about #rotate problems to "Known Issues" in the README (#60).
  • Improved docs for tablex options columns and rows (#53).

New Contributors

  • @ja-he made their first contribution in #60

Full Changelog: v0.0.5...v0.0.6