Development build 586e1bd4
Typst文档简体中文版v0.15.1 + dev 586e1bd4

附加 [⚠️ need proofread]

下标、上标和限制。

附件可以显示为上/下标或限制。Typst会根据基数自动决定哪个更适合,但您还可以使用scriptslimits函数手动控制。 [⚠️💀]

示例

$ sum_(i=0)^n a_i = 2^(1+i) $

语法

此函数还具有用于在基数之后附加的专用语法:使用下划线(_)表示下标,即底部附件,使用脱帽(^)表示上标,即顶部附件。 [⚠️]

函数

attach元素
Question mark
自始可用Go to source

A base with optional attachments.

Expand展开示例
$ attach( Pi, t: alpha, b: beta, tl: 1, tr: 2+3, bl: 4+5, br: 6, ) $

If you want to add accents (hats, tildes, arrows, etc.) instead of scripts or corner attachments, use the accent function instead.

base
content
必需参数
Question mark
位置参数
Question mark

The base to which things are attached.

t
none or content
可用set规则
Question mark
默认值:none

The top attachment, smartly positioned at top-right or above the base.

You can wrap the base in limits() or scripts() to override the smart positioning.

b
none or content
可用set规则
Question mark
默认值:none

The bottom attachment, smartly positioned at the bottom-right or below the base.

You can wrap the base in limits() or scripts() to override the smart positioning.

tl
none or content
可用set规则
Question mark
默认值:none

The top-left attachment (before the base).

bl
none or content
可用set规则
Question mark
默认值:none

The bottom-left attachment (before base).

tr
none or content
可用set规则
Question mark
默认值:none

The top-right attachment (after the base).

br
none or content
可用set规则
Question mark
默认值:none

The bottom-right attachment (after the base).

scripts元素
Question mark
自始可用Go to source

Forces a base to display attachments as scripts.

Expand展开示例
$ scripts(sum)_1^2 != sum_1^2 $
math.scripts(content) → content

body
content
必需参数
Question mark
位置参数
Question mark

The base to attach the scripts to.

limits元素
Question mark
自始可用Go to source

Forces a base to display attachments as limits.

Expand展开示例
$ limits(A)_1^2 != A_1^2 $
math.limits() → content

body
content
必需参数
Question mark
位置参数
Question mark

The base to attach the limits to.

inline
bool
可用set规则
Question mark
默认值:true

Whether to also force limits in inline equations.

When applying limits globally (e.g., through a show rule), it is typically a good idea to disable this.