added some styling options

This commit is contained in:
2024-06-18 13:51:01 +02:00
parent 14cbda2ffb
commit 974eb92159
4 changed files with 29 additions and 6 deletions

View File

@ -1,12 +1,21 @@
#import "renderer.typ": render
#let _seq(p1, p2, comment: none, style: auto) = {
#let _seq(
p1,
p2,
comment: none,
dashed: false,
tip: "default",
color: black
) = {
return ((
type: "seq",
p1: p1,
p2: p2,
comment: comment,
style: style
dashed: dashed,
tip: tip,
color: color,
),)
}