mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
24 lines
501 B
XML
24 lines
501 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, width: 100%, height: 100%,
|
|
rect(fill: conifer, width: 100%, height: 100%,
|
|
align(center + horizon)[
|
|
Stuff inside an ellipse!
|
|
]
|
|
)
|
|
)
|
|
)
|
|
|
|
Auto-sized ellipse. \
|
|
#ellipse(fill: conifer, stroke: 3pt + forest, padding: 3pt)[
|
|
#set text(8pt)
|
|
But, soft! what light through yonder window breaks?
|
|
]
|