未翻訳
このページはまだ翻訳されていません。原文の内容が表示されています。
line
ElementElementElement functions can be customized with set
and show
rules.
Element
Element functions can be customized with
set
and show
rules.A line from one point to another.
Example
#set page(height: 100pt)
#line(length: 100%)
#line(end: (50%, 50%))
#line(
length: 4cm,
stroke: 2pt + maroon,
)

引数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.
start
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 start point of the line.
Must be an array of exactly two relative lengths.
デフォルト値: (0% + 0pt, 0% + 0pt)
end
The point where the line ends.
デフォルト値: none
length
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 line's length. This is only respected if end
is none
.
デフォルト値: 0% + 30pt
angle
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 angle at which the line points away from the origin. This is only
respected if end
is none
.
デフォルト値: 0deg
stroke
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.How to stroke the line.
デフォルト値: 1pt + black
例を表示
#set line(length: 100%)
#stack(
spacing: 1em,
line(stroke: 2pt + red),
line(stroke: (paint: blue, thickness: 4pt, cap: "round")),
line(stroke: (paint: blue, thickness: 1pt, dash: "dashed")),
line(stroke: (paint: blue, thickness: 1pt, dash: ("dot", 2pt, 4pt, 2pt))),
)
