updated manual and gallery

This commit is contained in:
Louis Heredero 2024-11-09 14:42:52 +01:00
parent b33531bef5
commit 42e8e26aa7
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7
11 changed files with 6 additions and 4 deletions

View File

@ -58,10 +58,12 @@
/// - width (auto, int, float, length): Optional fixed width of the column\ If the column's content (e.g. sequence comments) is larger, it will overflow /// - width (auto, int, float, length): Optional fixed width of the column\ If the column's content (e.g. sequence comments) is larger, it will overflow
/// - margin (int, float, length): Additional margin to add to the column\ This margin is not included in `width` and `min-width`, but rather added separately /// - margin (int, float, length): Additional margin to add to the column\ This margin is not included in `width` and `min-width`, but rather added separately
/// - min-width (int, float, length): Minimum width of the column\ If set to a larger value than `width`, the latter will be overriden /// - min-width (int, float, length): Minimum width of the column\ If set to a larger value than `width`, the latter will be overriden
/// - max-width (int, float, length, none): Maximum width of the column\ If set to a lower value than `width`, the latter will be overriden\ If set to `none`, no restriction is applied
#let _col( #let _col(
p1, p1,
p2, p2,
width: auto, width: auto,
margin: 0, margin: 0,
min-width: 0 min-width: 0,
max-width: none
) = {} ) = {}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

View File

@ -30,8 +30,8 @@
#set page(numbering: "1/1", header: align(right)[chronos #sym.dash.em v#chronos.version]) #set page(numbering: "1/1", header: align(right)[chronos #sym.dash.em v#chronos.version])
#set page( #set page(
header: locate(loc => align(left)[chronos #sym.dash.em v#chronos.version]), header: align(left)[chronos #sym.dash.em v#chronos.version],
footer: locate(loc => align(center, counter(page).display("1/1", both: true))) footer: context align(center, counter(page).display("1/1", both: true))
) )
= Introduction = Introduction

View File

@ -1,4 +1,4 @@
#let version = version(0, 1, 1) #let version = version(0, 2, 0)
#import "diagram.typ": diagram, from-plantuml, _gap, _evt, _col #import "diagram.typ": diagram, from-plantuml, _gap, _evt, _col
#import "sequence.typ": _seq, _ret #import "sequence.typ": _seq, _ret