vec
Element
A column vector.
Content in the vector's elements can be aligned with the
align
parameter, or the &
symbol.
This function is for typesetting vector components. To typeset a symbol that
represents a vector, arrow
and bold
are
commonly used.
Example
$ vec(a, b, c) dot vec(1, 2, 3)
= a + 2b + 3c $

Parameters
delim
The delimiter to use.
Can be a single character specifying the left delimiter, in which case the right delimiter is inferred. Otherwise, can be an array containing a left and a right delimiter.
View example
#set math.vec(delim: "[")
$ vec(1, 2) $

Default: ("(", ")")
align
The horizontal alignment that each element should have.
View example
#set math.vec(align: right)
$ vec(-1, 1, -1) $

Default: center
gap
The gap between elements.
View example
#set math.vec(gap: 1em)
$ vec(1, 2) $

Default: 0% + 0.2em
children
The elements of the vector.