You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# typst-tablex (v0.0.4)
1
+
# typst-tablex (v0.0.5)
2
2
**More powerful and customizable tables in Typst.**
3
3
4
4
**NOTE:** This library still has a few bugs, but most of them shouldn't be noticeable. **Please open an issue if you find a bug** and I'll get to it as soon as I can. **(Do not be afraid to open issues!! Also, PRs are welcome!)**
@@ -17,7 +17,7 @@
17
17
*[Basic types and functions](#basic-types-and-functions)
18
18
*[Gridx and Tablex](#gridx-and-tablex)
19
19
*[Changelog](#changelog)
20
-
*[Unreleased](#unreleased)
20
+
*[v0.0.5](#v005)
21
21
*[v0.0.4](#v004)
22
22
*[v0.0.3](#v003)
23
23
*[v0.0.2](#v002)
@@ -27,7 +27,7 @@
27
27
28
28
## Usage
29
29
30
-
To use this library through the Typst package manager **(for Typst v0.6.0+)**, write for example `#import "@preview/tablex:0.0.4": tablex, cellx` at the top of your Typst file (you may also add whichever other functions you use from the library to that import list!).
30
+
To use this library through the Typst package manager **(for Typst v0.6.0+)**, write for example `#import "@preview/tablex:0.0.5": tablex, cellx` at the top of your Typst file (you may also add whichever other functions you use from the library to that import list!).
31
31
32
32
For older Typst versions, download the file `tablex.typ` from the latest release (or directly from the main branch, for the 'bleeding edge') at the tablex repository (https://github.com/PgBiel/typst-tablex) and place it on the same folder as your own Typst file. Then, at the top of your file, write for example `#import "tablex.typ": tablex, cellx` (plus whichever other functions you use from the library).
33
33
@@ -40,7 +40,7 @@ Here's an example of what `tablex` can do:
In most cases, you should be able to replace `#table` with `#tablex` and be good to go for a start - it should look _very_ similar (if not identical). Indeed, the syntax is very similar for the basics:
93
93
94
94
```js
95
-
#import"@preview/tablex:0.0.4": tablex
95
+
#import"@preview/tablex:0.0.5": tablex
96
96
97
97
#tablex(
98
98
columns: (auto, 1em, 1fr, 1fr), // 4 columns
@@ -117,7 +117,7 @@ This is mostly a word of caution in case anything I haven't anticipated happens,
117
117
Your cells can now span more than one column and/or row at once, with `colspanx` / `rowspanx`:
You can also *bulk-customize lines* by specifying `map-hlines: h => new_hline` and `map-vlines: v => new_vline`. This includes any automatically generated lines. For example:
@@ -598,13 +598,13 @@ Another example (summing columns):
598
598
599
599
## Changelog
600
600
601
-
### Unreleased
601
+
### v0.0.5
602
602
603
603
- ⚠️ **Minimum Typst version raised to v0.2.0**
604
604
- Improved calculation of page/container dimensions by using the `layout()` function.
605
605
- Fixes tables with fractional columns not displaying properly in blocks with `auto` width (https://github.com/PgBiel/typst-tablex/issues/44; https://github.com/PgBiel/typst-tablex/issues/39)
606
606
- Fixes some nested tables overflowing the page width (https://github.com/PgBiel/typst-tablex/issues/41)
607
-
- Fixes nested tables with fractional columns not displaying properly (https://github.com/PgBiel/typst-tablex/issues/28)
607
+
- Fixes bad interaction between tables with fractional columns and nested tables (https://github.com/PgBiel/typst-tablex/issues/28)
608
608
- Fixes table rotation messing up table size calculation (https://github.com/PgBiel/typst-tablex/issues/52)
609
609
- Probably fixes other issues not listed here as well.
610
610
- Added some guards for infinite lengths and `auto`-sized pages (https://github.com/PgBiel/typst-tablex/issues/47).
0 commit comments