mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
28 lines
721 B
XML
28 lines
721 B
XML
// Test shapes.
|
|
|
|
---
|
|
// Test the `rect` function.
|
|
|
|
#page!(width: 150pt)
|
|
|
|
// Fit to text.
|
|
#rect(fill: conifer)[Textbox]
|
|
|
|
// Empty with fixed width and height.
|
|
#rect(width: 3cm, height: 12pt, fill: rgb("CB4CED"))
|
|
|
|
// Fixed width, text height.
|
|
#rect(width: 2cm, fill: rgb("9650D6"), pad(5pt)[Fixed and padded])
|
|
|
|
// Page width, fixed height.
|
|
#rect(height: 1cm, width: 100%, fill: rgb("734CED"))[Topleft]
|
|
|
|
// Not visible, but creates a gap between the boxes above and below
|
|
// due to line spacing.
|
|
#rect(width: 1in, fill: rgb("ff0000"))
|
|
|
|
// These are in a row!
|
|
#rect(width: 0.5in, height: 10pt, fill: rgb("D6CD67"))
|
|
#rect(width: 0.5in, height: 10pt, fill: rgb("EDD466"))
|
|
#rect(width: 0.5in, height: 10pt, fill: rgb("E3BE62"))
|