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

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

A square with optional content.

Example

// Without content. #square(size: 40pt) // With content. #square[ Automatically \ sized to fit. ]

参数
Question mark

size默认值:auto

The square’s side length. This is mutually exclusive with width and height.

width
auto or relative
可用set规则
Question mark
默认值:auto

The square’s width. This is mutually exclusive with size and height.

In contrast to size, this can be relative to the parent container’s width.

height
auto or relative or fraction
可用set规则
Question mark
默认值:auto

The square’s height. This is mutually exclusive with size and width.

In contrast to size, this can be relative to the parent container’s height.

fill
none or color or gradient or tiling
可用set规则
Question mark
默认值:none

How to fill the square. See the rectangle’s documentation for more details.

stroke
none or auto or length or color or gradient or stroke or tiling or dictionary
可用set规则
Question mark
默认值:auto

How to stroke the square. See the rectangle’s documentation for more details.

radius
relative or dictionary
可用set规则
Question mark
默认值:(:)

How much to round the square’s corners. See the rectangle’s documentation for more details.

inset
relative or dictionary
可用set规则
Question mark
默认值:0% + 5pt

How much to pad the square’s content. See the box’s documentation for more details.

outset
relative or dictionary
可用set规则
Question mark
默认值:(:)

How much to expand the square’s size without affecting the layout. See the box’s documentation for more details.

body
none or content
位置参数
Question mark
可用set规则
Question mark
默认值:none

The content to place into the square. The square expands to fit this content, keeping the 1-1 aspect ratio.

When this is omitted, the square takes on a default size of at most 30pt.