v0.0.6
版本发布时间: 2023-10-22 05:30:34
PgBiel/typst-tablex最新发布版本:v0.0.8(2024-01-12 23:23:59)
What's Changed
- Added support for RTL tables with
rtl: true
(https://github.com/PgBiel/typst-tablex/issues/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 (https://github.com/PgBiel/typst-tablex/issues/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 (https://github.com/PgBiel/typst-tablex/issues/55).
- Added full compatibility with the new Typst 0.8.0 type system (https://github.com/PgBiel/typst-tablex/issues/69).
- Added info about
#rotate
problems to "Known Issues" in the README (https://github.com/PgBiel/typst-tablex/pull/60). - Improved docs for tablex options
columns
androws
(https://github.com/PgBiel/typst-tablex/issues/53).
New Contributors
- @ja-he made their first contribution in https://github.com/PgBiel/typst-tablex/pull/60
Full Changelog: https://github.com/PgBiel/typst-tablex/compare/v0.0.5...v0.0.6
1、 tablex.typ 88.03KB