注意:该页面为保留旧有翻译而留下的,新文档并没有该页面,请注意甄别。新的文档可以在 “基础” 部分找到,不过暂未未完全翻译完毕。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 中文文档

integer

一个整数。

这个数可以是负数、零或正数。 由于 Typst 使用 64 位来存储整数,整数不能小于 -9223372036854775808 或大于 9223372036854775807

这个数字也可以用十六进制、八进制或二进制表示,只需以 0 开头,然后跟着 xo,或 b

Example

#(1 + 2) \
#(2 - 5) \
#(3 + 4 < 8)

#0xff \
#0o10 \
#0b1001
Preview