Info
This site is generated using the static site generator developed by the Typst Community. Please adjust the text content of this banner according to your usage requirements. At Typst GmbH's request, when publishing documentation, you must clearly indicate that it is non-official and display the version of Typst being documented. For details, refer to Issue #874 on typst/typst.

module

An module of definitions.

A module

You can access definitions from the module using field access notation and interact with it using the import and include syntaxes. Alternatively, it is possible to convert a module to a dictionary, and therefore access its contents dynamically, using the dictionary constructor.

Example

#import "utils.typ"
#utils.add(2, 5)

#import utils: sub
#sub(1, 4)
Preview
Open official docs

Search