Added generic object to typst

This commit is contained in:
2025-02-11 10:08:45 -08:00
parent cd72817bdf
commit c27c875d98
2 changed files with 9 additions and 2 deletions

View File

@ -98,3 +98,11 @@
#let theorem = _mkobj("Theorem")
#let example = _mkobj("Example")
#let remark = _mkobj("Remark")
#let generic(obj_content) = {
block(
above: 8mm,
below: 2mm,
text(weight: "bold", obj_content),
)
}