move
元素
元素函数可以通过 set 和 show 规则进行样式自定义。
元素函数可以通过 set 和 show 规则进行样式自定义。
Moves content without affecting layout.
The move
function allows you to move content while the layout still 'sees'
it at the original positions. Containers will still be sized as if the
content was not moved.
Example
#rect(inset: 0pt, move(
dx: 6pt, dy: 6pt,
rect(
inset: 8pt,
fill: white,
stroke: black,
[Abra cadabra]
)
))
参数
参数是函数的输入,它们在函数名称后面的括号中传入。
参数是函数的输入,它们在函数名称后面的括号中传入。
dx
The horizontal displacement of the content.
默认:0pt
dy
The vertical displacement of the content.
默认:0pt
body
The content to move.