TypstDocumentation

moveElement
Question mark

Moves content without affecting layout.

The move function allows you to move content while th 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]
  )
))
Preview

Parameters
Question mark

dx
relative
Settable
Question mark

The horizontal displacement of the content.

Default: 0pt

dy
relative
Settable
Question mark

The vertical displacement of the content.

Default: 0pt

body
content
RequiredPositional
Question mark

The content to move.