scale
ElementElement functions can be customized with set
and show
rules.
Element functions can be customized with
set
and show
rules.Scales content without affecting layout.
Lets you mirror content by specifying a negative scale on a single axis.
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
View example
A#box(scale(75%)[A])A \
B#box(scale(75%, origin: bottom + left)[B])B

body
The content to scale.