情報アイコン
情報 / Info
当サイトは、Typst GmbHの許諾を得て、日本語コミュニティ「Typst Japan Community」がTypst v0.13.1の公式ドキュメントを翻訳したものです。誤訳や古い情報が含まれている可能性があるため、公式ドキュメントとの併用を推奨します。翻訳の改善やサイトの機能向上について、GitHubでのIssueやPull Requestを歓迎します。コミュニティにご興味のある方はDiscordサーバー「くみはんクラブ」にぜひご参加ください。
This site provides a Japanese translation of the Typst v0.13.1 documentation maintained by the "Typst Japan Community" with permission from Typst GmbH. We recommend using this alongside the official documentation. We welcome contributions through Issues and Pull Requests on our GitHub repository for both translation improvements and website enhancements. Feel free to join our Discord server "Kumihan Club".
言語アイコン
未翻訳

このページはまだ翻訳されていません。原文の内容が表示されています。

path
Element
ヘルプアイコン

警告アイコン
the `path` function is deprecated, use `curve` instead

A path through a list of points, connected by Bézier curves.

Example

#path(
  fill: blue.lighten(80%),
  stroke: blue,
  closed: true,
  (0pt, 50pt),
  (100%, 50pt),
  ((50%, 0pt), (40pt, 0pt)),
)
Preview

引数
ヘルプアイコン

fill
Settable
ヘルプアイコン

How to fill the path.

When setting a fill, the default stroke disappears. To create a rectangle with both fill and stroke, you have to configure both.

デフォルト値:

none

fill-rule
Settable
ヘルプアイコン

The drawing rule used to fill the path.

使用可能な文字列値:
  • non-zero

    Specifies that "inside" is computed by a non-zero sum of signed edge crossings.

  • even-odd

    Specifies that "inside" is computed by an odd number of edge crossings.

デフォルト値:

"non-zero"

右矢印アイコン
例を表示
// We use `.with` to get a new
// function that has the common
// arguments pre-applied.
#let star = path.with(
  fill: red,
  closed: true,
  (25pt, 0pt),
  (10pt, 50pt),
  (50pt, 20pt),
  (0pt, 20pt),
  (40pt, 50pt),
)

#star(fill-rule: "non-zero")
#star(fill-rule: "even-odd")
Preview

stroke
Settable
ヘルプアイコン

How to stroke the path. This can be:

Can be set to none to disable the stroke or to auto for a stroke of 1pt black if and if only if no fill is given.

デフォルト値:

auto

closed
Settable
ヘルプアイコン

Whether to close this path with one last Bézier curve. This curve will take into account the adjacent control points. If you want to close with a straight line, simply add one last point that's the same as the start point.

デフォルト値:

false

vertices
Required
ヘルプアイコン
Positional
ヘルプアイコン
Variadic
ヘルプアイコン

The vertices of the path.

Each vertex can be defined in 3 ways:

  • A regular point, as given to the line or polygon function.
  • An array of two points, the first being the vertex and the second being the control point. The control point is expressed relative to the vertex and is mirrored to get the second control point. The given control point is the one that affects the curve coming into this vertex (even for the first point). The mirrored control point affects the curve going out of this vertex.
  • An array of three points, the first being the vertex and the next being the control points (control point for curves coming in and out, respectively).

検索