mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
24 lines
451 B
XML
24 lines
451 B
XML
// Test the `ellipse` function.
|
|
|
|
---
|
|
// Default ellipse.
|
|
#ellipse()
|
|
|
|
---
|
|
Rect in ellipse in fixed rect. \
|
|
#rect(width: 3cm, height: 2cm, fill: rgb("2a631a"),
|
|
ellipse(fill: forest,
|
|
rect(fill: conifer,
|
|
align(center, center)[
|
|
Stuff inside an ellipse!
|
|
]
|
|
)
|
|
)
|
|
)
|
|
|
|
Auto-sized ellipse. \
|
|
#ellipse(fill: conifer, stroke: forest, thickness: 3pt, padding: 3pt)[
|
|
#font(8pt)
|
|
But, soft! what light through yonder window breaks?
|
|
]
|