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

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

terms
Element
Element
Element functions can be customized with set and show rules.

A list of terms and their descriptions.

Displays a sequence of terms and their descriptions vertically. When the descriptions span over multiple lines, they use hanging indent to communicate the visual hierarchy.

Example

/ Ligature: A merged glyph.
/ Kerning: A spacing adjustment
  between two adjacent letters.
Preview

Syntax

This function also has dedicated syntax: Starting a line with a slash, followed by a term, a colon and a description creates a term list item.

引数
Parameters
Parameters are the inputs to a function. They are specified in parentheses after the function name.

tight
Settable
Settable
Settable parameters can be customized for all following uses of the function with a set rule.

Defines the default spacing of the term list. If it is false, the items are spaced apart with paragraph spacing. If it is true, they use paragraph leading instead. This makes the list more compact, which can look better if the items are short.

In markup mode, the value of this parameter is determined based on whether items are separated with a blank line. If items directly follow each other, this is set to true; if items are separated by a blank line, this is set to false. The markup-defined tightness cannot be overridden with set rules.

デフォルト値:

true

右矢印アイコン
例を表示
/ Fact: If a term list has a lot
  of text, and maybe other inline
  content, it should not be tight
  anymore.

/ Tip: To make it wide, simply
  insert a blank line between the
  items.
Preview

separator
Settable
Settable
Settable parameters can be customized for all following uses of the function with a set rule.

The separator between the item and the description.

If you want to just separate them with a certain amount of space, use h(2cm, weak: true) as the separator and replace 2cm with your desired amount of space.

デフォルト値:

h(amount: 0.6em, weak: true)

右矢印アイコン
例を表示
#set terms(separator: [: ])

/ Colon: A nice separator symbol.
Preview

indent
Settable
Settable
Settable parameters can be customized for all following uses of the function with a set rule.

The indentation of each item.

デフォルト値:

0pt

hanging-indent
Settable
Settable
Settable parameters can be customized for all following uses of the function with a set rule.

The hanging indent of the description.

This is in addition to the whole item's indent.

デフォルト値:

2em

右矢印アイコン
例を表示
#set terms(hanging-indent: 0pt)
/ Term: This term list does not
  make use of hanging indents.
Preview

spacing
Settable
Settable
Settable parameters can be customized for all following uses of the function with a set rule.

The spacing between the items of the term list.

If set to auto, uses paragraph leading for tight term lists and paragraph spacing for wide (non-tight) term lists.

デフォルト値:

auto

children
Required
Required
Required parameters must be specified when calling the function.
Positional
Positional
Positional parameters are specified in order, without names.
Variadic
Variadic
Variadic parameters can be specified multiple times.

The term list's children.

When using the term list syntax, adjacent items are automatically collected into term lists, even through constructs like for loops.

右矢印アイコン
例を表示
#for (year, product) in (
  "1978": "TeX",
  "1984": "LaTeX",
  "2019": "Typst",
) [/ #product: Born in #year.]
Preview

定義
Definitions
Functions and types and can have associated definitions. These are accessed by specifying the function or type, followed by a period, and then the definition's name.

item
Element
Element
Element functions can be customized with set and show rules.

A term list item.

terms.item()->

term
Required
Required
Required parameters must be specified when calling the function.
Positional
Positional
Positional parameters are specified in order, without names.

The term described by the list item.

description
Required
Required
Required parameters must be specified when calling the function.
Positional
Positional
Positional parameters are specified in order, without names.

The description of the term.

検索