v0.0.6
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 thertl
parameter every time.)
- Default Typst tables are automatically flipped horizontally when using
- 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), ...)
.
- For instance, you can now do
- 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
androws
(#53).
New Contributors
Full Changelog: v0.0.5...v0.0.6