packages feed

typst-0.1.0.0: test/typ/layout/page-05.typ

// Layout without any container should provide the page's dimensions, minus its margins.

#page(width: 100pt, height: 100pt, {
  layout(size => [This page has a width of #size.width and height of #size.height ])
  h(1em)
  place(left, rect(width: 80pt, stroke: blue))
})