未翻訳
このページはまだ翻訳されていません。原文の内容が表示されています。
vec
ElementElementElement functions can be customized with set
and show
rules.
Element
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 $

引数ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters
Parameters are the inputs to a function. They are specified in parentheses after the function name.
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.
デフォルト値: ("(", ")")
例を表示
#set math.vec(delim: "[")
$ vec(1, 2) $

align
SettableSettableSettable parameters can be customized for all following uses of the function with a set
rule.
Settable
Settable
Settable parameters can be customized for all following uses of the function with a
set
rule.The horizontal alignment that each element should have.
デフォルト値: center
例を表示
#set math.vec(align: right)
$ vec(-1, 1, -1) $

gap
SettableSettableSettable parameters can be customized for all following uses of the function with a set
rule.
Settable
Settable
Settable parameters can be customized for all following uses of the function with a
set
rule.The gap between elements.
デフォルト値: 0% + 0.2em
例を表示
#set math.vec(gap: 1em)
$ vec(1, 2) $

children
RequiredRequiredRequired parameters must be specified when calling the function.PositionalPositionalPositional parameters are specified in order, without names.VariadicVariadicVariadic parameters can be specified multiple times.
Required
Required
Required parameters must be specified when calling the function.
Positional
Positional
Positional parameters are specified in order, without names.
Variadic
Variadic
Variadic parameters can be specified multiple times.
The elements of the vector.