๐ Vector Function โ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app Documentation vec
Element ๐ Vector Function โ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app
Element functions can be customized with set
and show
rules.
A column vector.
Content in the vector's elements can be aligned with the
align
parameter, or the &
symbol.
Example
$ vec ( a, b, c) dot vec ( 1, 2, 3)
= a + 2b + 3c $
Parameters ๐ Vector Function โ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app
Parameters are the inputs to a function. They are specified in
parentheses after the function name.
delim
Settable ๐ Vector Function โ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app
Settable parameters can be customized for all following uses of the
function with a set
rule.
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.
Default: ( "(" , ")" )
View example # set math. vec ( delim: "[" )
$ vec ( 1, 2) $
align
Settable ๐ Vector Function โ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app
Settable parameters can be customized for all following uses of the
function with a set
rule.
The horizontal alignment that each element should have.
Default: center
View example # set math. vec ( align: right)
$ vec ( - 1, 1, - 1) $
gap
Settable ๐ Vector Function โ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app
Settable parameters can be customized for all following uses of the
function with a set
rule.
The gap between elements.
Default: 0% + 0.2em
View example # set math. vec ( gap: 1em )
$ vec ( 1, 2) $
children
Required Positional ๐ Vector Function โ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app
Positional parameters are specified in order, without names.
Variadic ๐ Vector Function โ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app
Variadic parameters can be specified multiple times.
The elements of the vector.
On this page