scale
ElementElement functions can be customized with set
and show
rules.
Element functions can be customized with
set
and show
rules.Scale content without affecting layout.
The scale
function allows you to scale and mirror content without
affecting the layout.
Example
#set align(center)
#scale(x: -100%)[This is mirrored.]

ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters are the inputs to a function. They are specified in parentheses after the function name.
x
SettableSettable parameters can be customized for all following uses of the function with a set
rule.
Settable parameters can be customized for all following uses of the function with a
set
rule.The horizontal scaling factor.
The body will be mirrored horizontally if the parameter is negative.
Default: 100%
y
SettableSettable parameters can be customized for all following uses of the function with a set
rule.
Settable parameters can be customized for all following uses of the function with a
set
rule.The vertical scaling factor.
The body will be mirrored vertically if the parameter is negative.
Default: 100%
origin
SettableSettable parameters can be customized for all following uses of the function with a set
rule.
Settable parameters can be customized for all following uses of the function with a
set
rule.The origin of the transformation.
Default: center + horizon
A#box(scale(75%)[A])A \
B#box(scale(75%, origin: bottom + left)[B])B

body
The content to scale.