Development build 586e1bd4
Typst文档简体中文版v0.15.1 + dev 586e1bd4

line元素
Question mark
自始可用Go to source

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, )

参数
Question mark

start
array
可用set规则
Question mark
默认值:(0% + 0pt, 0% + 0pt)

The start point of the line.

Must be an array of exactly two relative lengths.

end
none or array
可用set规则
Question mark
默认值:none

The point where the line ends.

length
relative
可用set规则
Question mark
默认值:0% + 30pt

The line’s length. This is only respected if end is none.

angle
angle
可用set规则
Question mark
默认值:0deg

The angle at which the line points away from the origin. This is only respected if end is none.

stroke
length or color or gradient or stroke or tiling or dictionary
可用set规则
Question mark
默认值:1pt + black

How to stroke the line.

Expand展开示例
#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))), )