aboutsummaryrefslogtreecommitdiff
path: root/src/eval/template_math_content.typ
blob: cd31ef6fd4c8f0871b1a94ec7c84473ee58d130c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#let display(body) = context {
  show math.equation: set text(font: "New Computer Modern Math")

  let margin = 2pt
  let m = measure(body)
  set page(
    fill: none,
    margin: margin,
    width: m.width + margin*2, 
    height: m.height + margin*2,
  )
  body
}

#display()[$!!$]