Skip to content

Installation

Once examst is published to the Typst package registry:

#import "@preview/examst:0.1.0": *

Clone the repository and import directly:

#import "/src/lib.typ": *
#import "@preview/examst:0.1.0": *
#examst-set(
render-question-counter: it => numbering("1.", it.get().last()),
)
#question(points: 10)[
Why is the sky blue?
]
#question(points: 5)[
What color is grass?
#multi-choice(
marker: "bubble-letter",
[Red],
correct[Green],
[Blue],
)
]