情報アイコン
情報 / Info
当サイトは、Typst GmbHの許諾を得て、日本語コミュニティ「Typst Japan Community」がTypst vdev.3ed92cdeの公式ドキュメントを翻訳したものです。誤訳や古い情報が含まれている可能性があるため、公式ドキュメントとの併用を推奨します。翻訳の改善やサイトの機能向上について、GitHubでのIssueやPull Requestを歓迎します。コミュニティにご興味のある方はDiscordサーバー「くみはんクラブ」にぜひご参加ください。
This site provides a Japanese translation of the Typst vdev.3ed92cde 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".
言語アイコン
翻訳率
21%
言語アイコン
翻訳済み

このページは日本語に翻訳済みです。

direction

The four directions into which content can be laid out.

Possible values are:

  • ltr: Left to right.
  • rtl: Right to left.
  • ttb: Top to bottom.
  • btt: Bottom to top.

These values are available globally and also in the direction type's scope, so you can write either of the following two:

#stack(dir: rtl)[A][B][C]
#stack(dir: direction.rtl)[A][B][C]
Preview

定義
定義
これらの関数や型には、関連する定義を持たせることができます。定義にアクセスするには、対象の関数や型の名前を指定した後に、ピリオド区切りで定義名を記述します。

from

Returns a direction from a starting point.

direction.from()->
右矢印アイコン
例を表示
direction.from(left) \
direction.from(right) \
direction.from(top) \
direction.from(bottom)
Preview

side
必須引数
必須引数
必須引数は、関数を呼び出す際に必ず指定しなければなりません。
位置引数
位置引数
位置引数は順序通りに指定することで、引数名を省略して設定できます。

to

Returns a direction from an end point.

direction.to()->
右矢印アイコン
例を表示
direction.to(left) \
direction.to(right) \
direction.to(top) \
direction.to(bottom)
Preview

side
必須引数
必須引数
必須引数は、関数を呼び出す際に必ず指定しなければなりません。
位置引数
位置引数
位置引数は順序通りに指定することで、引数名を省略して設定できます。

axis

The axis this direction belongs to, either "horizontal" or "vertical".

self.axis(
)->
右矢印アイコン
例を表示
#ltr.axis() \
#ttb.axis()
Preview

sign

The corresponding sign, for use in calculations.

self.sign(
)->
右矢印アイコン
例を表示
#ltr.sign() \
#rtl.sign() \
#ttb.sign() \
#btt.sign()
Preview

start

The start point of this direction, as an alignment.

self.start(
)->
右矢印アイコン
例を表示
#ltr.start() \
#rtl.start() \
#ttb.start() \
#btt.start()
Preview

end

The end point of this direction, as an alignment.

self.end(
)->
右矢印アイコン
例を表示
#ltr.end() \
#rtl.end() \
#ttb.end() \
#btt.end()
Preview

inv

The inverse direction.

self.inv(
)->
右矢印アイコン
例を表示
#ltr.inv() \
#rtl.inv() \
#ttb.inv() \
#btt.inv()
Preview
原文(英語)を開く
右矢印アイコン

検索