Documentation

vecElement
๐ŸŒ Vector Function โ€“ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app

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 $
Preview

Parameters
๐ŸŒ Vector Function โ€“ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app

delim
none or str or array or symbol
Settable
๐ŸŒ Vector Function โ€“ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app

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) $
Preview

align
alignment
Settable
๐ŸŒ Vector Function โ€“ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app

The horizontal alignment that each element should have.

Default: center

View example
#set math.vec(align: right)
$ vec(-1, 1, -1) $
Preview

gap
relative
Settable
๐ŸŒ Vector Function โ€“ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app

The gap between elements.

Default: 0% + 0.2em

View example
#set math.vec(gap: 1em)
$ vec(1, 2) $
Preview

children
content
Required Positional
๐ŸŒ Vector Function โ€“ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app
Variadic
๐ŸŒ Vector Function โ€“ Typst DocumentationTypstGitHubDiscordMastodonBlueskyLinkedInTypstQuestion markQuestion markQuestion markQuestion markQuestion markQuestion markQuestion mark - typst.app

The elements of the vector.