vec
A column vector.
Content in the vector's elements can be aligned with the &
symbol.
Example
$ vec(a, b, c) dot.op vec(1, 2, 3)
= a + 2b + 3c $

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.
vec()
elements
contentPositionalPositional parameters are specified in order, without names.VariadicVariadic parameters can be specified multiple times.
Positional parameters are specified in order, without names.
Variadic parameters can be specified multiple times.
The elements of the vector.
delim
stringSettableSettable 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 delimiter to use.
- "("
Delimit with parentheses.
- "["
Delimit with brackets.
- "{"
Delimit with curly braces.
- "|"
Delimit with vertical bars.
- "||"
Delimit with double vertical bars.
#set math.vec(delim: "[")
$ vec(1, 2) $
