vec
Element
A column vector.
Content in the vector's elements can be aligned with the &
symbol.
Example
$ vec(a, b, c) dot vec(1, 2, 3)
= a + 2b + 3c $
Parameters
delim
The delimiter to use.
Variant | Details |
---|---|
"(" | Delimit with parentheses. |
"[" | Delimit with brackets. |
"{" | Delimit with curly braces. |
"|" | Delimit with vertical bars. |
"||" | Delimit with double vertical bars. |
Default: "("
View example
#set math.vec(delim: "[")
$ vec(1, 2) $
gap
The gap between elements.
Default: 0.5em
View example
#set math.vec(gap: 1em)
$ vec(1, 2) $
children
The elements of the vector.