情報アイコン
情報 / 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%
言語アイコン
翻訳済み

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

alignment

Where to align something along an axis.

Possible values are:

  • start: Aligns at the start of the text direction.
  • end: Aligns at the end of the text direction.
  • left: Align at the left.
  • center: Aligns in the middle, horizontally.
  • right: Aligns at the right.
  • top: Aligns at the top.
  • horizon: Aligns in the middle, vertically.
  • bottom: Align at the bottom.

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

#align(center)[Hi]
#align(alignment.center)[Hi]
Preview

2D alignments

To align along both axes at the same time, add the two alignments using the + operator. For example, top + right aligns the content to the top right corner.

#set page(height: 3cm)
#align(center + bottom)[Hi]
Preview

Fields

The x and y fields hold the alignment's horizontal and vertical components, respectively (as yet another alignment). They may be none.

#(top + right).x \
#left.x \
#left.y (none)
Preview

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

axis

The axis this alignment belongs to.

  • "horizontal" for start, left, center, right, and end
  • "vertical" for top, horizon, and bottom
  • none for 2-dimensional alignments
self.axis(
)->
右矢印アイコン
例を表示
#left.axis() \
#bottom.axis()
Preview

inv

The inverse alignment.

self.inv(
)->
右矢印アイコン
例を表示
#top.inv() \
#left.inv() \
#center.inv() \
#(left + bottom).inv()
Preview
原文(英語)を開く
右矢印アイコン

検索