注意:该页面为保留旧有翻译而留下的,新文档并没有该页面,请注意甄别。新的文档可以在 “基础” 部分找到,不过暂未未完全翻译完毕。Typst 非官方中文交流 QQ 群:793548390
Warning: the Chinese document is a community-driven non-official document, there may be mistranslation, omission or outdated problems, please refer to the official website documentation.
Typst 中文文档

module

一个评估模块,可以是内置模块,也可以是来自文件的结果。

你可以使用字段访问符号来访问模块中的定义,并可以使用 import 和 include 语法与其交互。

Example

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

#import utils: sub
#sub(1, 4)
Preview