diff --git a/docs/example.typ b/docs/example.typ index 4b614ba..5f980a3 100644 --- a/docs/example.typ +++ b/docs/example.typ @@ -5,7 +5,7 @@ chronos: chronos ) -#let example(src, show-src: true, vertical: false, fill: true, wrap: true) = { +#let example(src, show-src: true, vertical: false, fill: false, wrap: true) = { src = src.text let full-src = example-preamble + src let body = eval(full-src, scope: example-scope) @@ -16,15 +16,15 @@ box( stroke: black + 1pt, radius: .5em, - fill: if fill {color.white.darken(5%)} else {none}, + fill: if fill {color.white.darken(2%)} else {none}, if show-src { - let src-block = align(left, raw(src, lang: "typc")) + let src-block = raw(src, block: true, lang: "typc") table( columns: if vertical {1} else {2}, - inset: 1em, + inset: 5pt, align: horizon + center, stroke: none, - img, + table.cell(inset: 1em, img), if vertical {table.hline()} else {table.vline()}, src-block ) } else { diff --git a/docs/examples.typ b/docs/examples.typ index e328c13..f50b16c 100644 --- a/docs/examples.typ +++ b/docs/examples.typ @@ -14,8 +14,10 @@ _ret(comment: [bye]) ```) #let seq-comm-align = example(``` -_par("p1", display-name: "Start participant") -_par("p2", display-name: "End participant") +_par("p1", + display-name: "Start participant") +_par("p2", + display-name: "End participant") let alignments = ( "start", "end", "left", "right", @@ -103,15 +105,15 @@ _par("a", display-name: "Alice") _par("b", display-name: "Bob") _loop("default loop", { - _seq("a", "b", comment: "Are you here ?") + _seq("a", "b", comment: "Are you here?") }) _gap() _loop("min loop", min: 1, { - _seq("a", "b", comment: "Are you here ?") + _seq("a", "b", comment: "Are you here?") }) _gap() _loop("min-max loop", min: 1, max: 5, { - _seq("a", "b", comment: "Are you still here ?") + _seq("a", "b", comment: "Are you still here?") }) ```) diff --git a/gallery/example1.pdf b/gallery/example1.pdf index 38cfcbe..17fe065 100644 Binary files a/gallery/example1.pdf and b/gallery/example1.pdf differ diff --git a/gallery/example2.pdf b/gallery/example2.pdf index c038ae9..c13a497 100644 Binary files a/gallery/example2.pdf and b/gallery/example2.pdf differ diff --git a/gallery/example3.pdf b/gallery/example3.pdf index 8cd3abd..b6ee5b1 100644 Binary files a/gallery/example3.pdf and b/gallery/example3.pdf differ diff --git a/gallery/notes.pdf b/gallery/notes.pdf index 2cc2ad5..df8c796 100644 Binary files a/gallery/notes.pdf and b/gallery/notes.pdf differ diff --git a/manual.pdf b/manual.pdf index e960f9f..b3a1bf0 100644 Binary files a/manual.pdf and b/manual.pdf differ diff --git a/manual.typ b/manual.typ index 86a7303..65dc6e5 100644 --- a/manual.typ +++ b/manual.typ @@ -1,4 +1,6 @@ -#import "@preview/tidy:0.3.0" +#import "@preview/tidy:0.4.2" +#import "@preview/codly:1.2.0": codly-init, codly +#import "@preview/codly-languages:0.1.8": codly-languages #import "src/lib.typ" as chronos #import "src/participant.typ" as mod-par #import "docs/examples.typ" @@ -6,25 +8,41 @@ #let TYPST = image("gallery/typst.png", width: 1.5cm, height: 1.5cm, fit: "contain") -#let doc-ref(target, full: false, var: false) = { - let (module, func) = target.split(".") - let label-name = module + func - let display-name = func - if full { - display-name = target - } - if not var { - label-name += "()" - display-name += "()" - } - link(label(label-name))[#display-name] -} +#show: codly-init +#codly( + languages: codly-languages +) + +#set text(font: "Source Sans 3") #set heading(numbering: (..num) => if num.pos().len() < 4 { numbering("1.1", ..num) }) + +#align(center)[ + #v(2cm) + #text(size: 2em)[*Chronos*] + + _v#chronos.version;_ + #v(1cm) + #chronos.diagram({ + import chronos: * + _par("u", display-name: [User], shape: "actor") + _par("wa", display-name: [Web App]) + _par("tu", display-name: [Typst Universe], shape: "database") + + _seq("u", "wa", comment: [Compile document], enable-dst: true) + _seq("wa", "tu", comment: [Fetch Chronos]) + _seq("tu", "wa", dashed: true, slant: 10) + _seq("wa", "wa", comment: [Render]) + _ret(comment: [Nice sequence diagram]) + }) +] + +#pagebreak() + #{ - outline(indent: true, depth: 3) + outline(indent: auto, depth: 3) } #show link: set text(fill: blue) @@ -40,14 +58,16 @@ This package lets you create nice sequence diagrams using the CeTZ package. = Usage +#let import-stmt = "#import \"@preview/chronos:" + str(chronos.version) + "\"" + Simply import #link("https://typst.app/universe/package/chronos/")[chronos] and call the `diagram` function: -#pad(left: 1em)[```typ -#import "@preview/chronos:0.1.0" +#raw(block:true, lang: "typ", ```typ +$import #chronos.diagram({ import chronos: * ... }) -```] +```.text.replace("$import", import-stmt)) = Examples @@ -121,7 +141,11 @@ chronos.diagram({ == Custom images #example(``` -let load-img(path) = image(path, width: 1.5cm, height: 1.5cm, fit:"contain") +let load-img(path) = image( + path, + width: 1.5cm, height: 1.5cm, + fit:"contain" +) let TYPST = load-img("../gallery/typst.png") let FERRIS = load-img("../gallery/ferris.png") let ME = load-img("../gallery/me.jpg") @@ -148,11 +172,11 @@ chronos.diagram({ read("docs/participants.typ"), name: "Participants", require-all-parameters: true, + old-syntax: true, scope: ( chronos: chronos, mod-par: mod-par, - TYPST: TYPST, - doc-ref: doc-ref + TYPST: TYPST ) ) #tidy.show-module(par-docs, show-outline: false, sort-functions: none) @@ -163,9 +187,9 @@ chronos.diagram({ read("docs/sequences.typ"), name: "Sequences", require-all-parameters: true, + old-syntax: true, scope: ( chronos: chronos, - doc-ref: doc-ref, examples: examples ) ) @@ -177,9 +201,9 @@ chronos.diagram({ read("docs/groups.typ"), name: "Groups", require-all-parameters: true, + old-syntax: true, scope: ( chronos: chronos, - doc-ref: doc-ref, examples: examples ) ) @@ -191,9 +215,9 @@ chronos.diagram({ read("docs/gaps_seps.typ"), name: "Gaps and separators", require-all-parameters: true, + old-syntax: true, scope: ( chronos: chronos, - doc-ref: doc-ref, examples: examples ) ) @@ -205,9 +229,9 @@ chronos.diagram({ read("docs/notes.typ"), name: "Notes", require-all-parameters: true, + old-syntax: true, scope: ( chronos: chronos, - doc-ref: doc-ref, examples: examples ) ) diff --git a/src/group.typ b/src/group.typ index 302fd37..db0933b 100644 --- a/src/group.typ +++ b/src/group.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.3.3": draw +#import "/src/cetz.typ": draw #import "consts.typ": * #let _grp(name, desc: none, type: "default", elmts) = { diff --git a/src/lib.typ b/src/lib.typ index 25671e5..2575674 100644 --- a/src/lib.typ +++ b/src/lib.typ @@ -1,4 +1,4 @@ -#let version = version(0, 2, 0) +#let version = version(0, 2, 1) #import "diagram.typ": diagram, from-plantuml, _gap, _evt, _col #import "sequence.typ": _seq, _ret diff --git a/src/note.typ b/src/note.typ index 874655b..14d3c98 100644 --- a/src/note.typ +++ b/src/note.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.3.3": draw +#import "/src/cetz.typ": draw #import "consts.typ": * #let SIDES = ( diff --git a/src/participant.typ b/src/participant.typ index 7dfaa16..a9e5572 100644 --- a/src/participant.typ +++ b/src/participant.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.3.3": draw +#import "/src/cetz.typ": draw #import "consts.typ": * #let PAR-SPECIALS = "?[]" diff --git a/src/renderer.typ b/src/renderer.typ index f16b941..4f70d02 100644 --- a/src/renderer.typ +++ b/src/renderer.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.3.3": canvas, draw +#import "/src/cetz.typ": canvas, draw #import "utils.typ": get-participants-i, get-style, normalize-units #import "group.typ" #import "participant.typ" diff --git a/src/separator.typ b/src/separator.typ index 3b8026e..e0d1b71 100644 --- a/src/separator.typ +++ b/src/separator.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.3.3": draw +#import "/src/cetz.typ": draw #import "consts.typ": * #let _sep(name) = { diff --git a/src/sequence.typ b/src/sequence.typ index a1274fb..eb315de 100644 --- a/src/sequence.typ +++ b/src/sequence.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.3.3": draw, vector +#import "/src/cetz.typ": draw, vector #import "consts.typ": * #import "participant.typ" #import "note.typ" diff --git a/typst.toml b/typst.toml index 5995ad0..c5a5dbc 100644 --- a/typst.toml +++ b/typst.toml @@ -1,7 +1,7 @@ [package] name = "chronos" version = "0.2.1" -compiler = "0.13.0" +compiler = "0.13.1" repository = "https://git.kb28.ch/HEL/chronos" entrypoint = "src/lib.typ" authors = [