diff options
Diffstat (limited to 'lib/unify.typ')
| -rw-r--r-- | lib/unify.typ | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/unify.typ b/lib/unify.typ new file mode 100644 index 0000000..a8ed0da --- /dev/null +++ b/lib/unify.typ @@ -0,0 +1,9 @@ +#import "@preview/unify:0.8.1": ( + num, numrange as sys-numrange, qty as sys-qty, qtyrange as sys-qtyrange, unit as sys-unit, +) + +// Set global defaults via currying +#let unit = sys-unit.with(per: "/") +#let qty = sys-qty.with(per: "/") +#let numrange = sys-numrange.with(delimiter: "\"to\"") +#let qtyrange = sys-qtyrange.with(per: "/", delimiter: "\"to\"") |
