diff --git a/examples/qualification-thesis/main.typ b/examples/qualification-thesis/main.typ index 5aa187a..208d0c9 100644 --- a/examples/qualification-thesis/main.typ +++ b/examples/qualification-thesis/main.typ @@ -1,6 +1,6 @@ #import "@preview/fletcher:0.5.8" as fletcher: diagram, edge, node #import fletcher.shapes: cylinder, ellipse -#import "@preview/solo-lu-df:0.0.1": * +#import "@preview/solo-lu-df:0.1.0": * #import "utils/tables.typ": function-table #import "utils/diagrams.typ": data-store, dpd-database, dpd-edge, process @@ -80,7 +80,7 @@ caption: "Another table", table( columns: (1fr, 1fr), - [foo], [bar], + [Column 1], [Column 2], ), ), ), diff --git a/template/main.typ b/template/main.typ index 5a6e289..b542ba2 100644 --- a/template/main.typ +++ b/template/main.typ @@ -1,4 +1,4 @@ -#import "@preview/solo-lu-df:0.0.1": ludf +#import "@preview/solo-lu-df:0.1.0": * #show: ludf.with( title: "Darba Nosaukums", @@ -59,6 +59,16 @@ ), ), ), + attachments: ( + attachment( + caption: "Attachment table", + label: , + table( + columns: (1fr, 1fr), + [Column 1], [Column 2], + ), + ), + ), ) diff --git a/typst.toml b/typst.toml index 364137c..2cfc1d9 100644 --- a/typst.toml +++ b/typst.toml @@ -1,6 +1,6 @@ [package] name = "solo-lu-df" -version = "0.0.1" +version = "0.1.0" compiler = "0.13.0" entrypoint = "src/lib.typ" repository = "https://github.com/kristoferssolo/LU-DF-Typst-Template"