情報アイコン
情報 / 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".
言語アイコン
未翻訳

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

selector

A filter for selecting elements within the document.

You can construct a selector in the following ways:

Selectors are used to apply styling rules to elements. You can also use selectors to query the document for certain types of elements.

Furthermore, you can pass a selector to several of Typst's built-in functions to configure their behaviour. One such example is the outline where it can be used to change which elements are listed within the outline.

Multiple selectors can be combined using the methods shown below. However, not all kinds of selectors are supported in all places, at the moment.

Example

#context query(
  heading.where(level: 1)
    .or(heading.where(level: 2))
)

= This will be found
== So will this
=== But this will not.
Preview

コンストラクタ
ヘルプアイコン

Turns a value into a selector. The following values are accepted:

  • An element function like a heading or figure.
  • A <label>.
  • A more complex selector like heading.where(level: 1).

target
Required
ヘルプアイコン
Positional
ヘルプアイコン

Can be an element function like a heading or figure, a <label> or a more complex selector like heading.where(level: 1).

定義
ヘルプアイコン

or

Selects all elements that match this or any of the other selectors.

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

The other selectors to match on.

and

Selects all elements that match this and all of the other selectors.

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

The other selectors to match on.

before

Returns a modified selector that will only match elements that occur before the first match of end.

end
Required
ヘルプアイコン
Positional
ヘルプアイコン

The original selection will end at the first match of end.

inclusive

Whether end itself should match or not. This is only relevant if both selectors match the same type of element. Defaults to true.

デフォルト値:

true

after

Returns a modified selector that will only match elements that occur after the first match of start.

start
Required
ヘルプアイコン
Positional
ヘルプアイコン

The original selection will start at the first match of start.

inclusive

Whether start itself should match or not. This is only relevant if both selectors match the same type of element. Defaults to true.

デフォルト値:

true

検索