このページはまだ翻訳されていません。原文の内容が表示されています。
terms要素関数要素関数要素関数はsetルールやshowルールでカスタマイズできます。
setルールやshowルールでカスタマイズできます。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.

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.
引数引数引数は関数への入力値です。関数名の後に括弧で囲んで指定します。
terms(,,,,,)->tight設定可能引数設定可能引数設定可能引数は、setルールを用いて設定でき、それ以降で使用するデフォルト値を変更できます。
tightsetルールを用いて設定でき、それ以降で使用するデフォルト値を変更できます。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.
例を表示
/ 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.

trueseparator設定可能引数設定可能引数設定可能引数は、setルールを用いて設定でき、それ以降で使用するデフォルト値を変更できます。
separatorsetルールを用いて設定でき、それ以降で使用するデフォルト値を変更できます。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.
例を表示
#set terms(separator: [: ])
/ Colon: A nice separator symbol.

h(amount: 0.6em, weak: true)indent設定可能引数設定可能引数設定可能引数は、setルールを用いて設定でき、それ以降で使用するデフォルト値を変更できます。
indentsetルールを用いて設定でき、それ以降で使用するデフォルト値を変更できます。The indentation of each item.
0pthanging-indent設定可能引数設定可能引数設定可能引数は、setルールを用いて設定でき、それ以降で使用するデフォルト値を変更できます。
hanging-indentsetルールを用いて設定でき、それ以降で使用するデフォルト値を変更できます。The hanging indent of the description.
This is in addition to the whole item's indent.
例を表示
#set terms(hanging-indent: 0pt)
/ Term: This term list does not
  make use of hanging indents.

2emautoThe 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.]

定義定義これらの関数や型には、関連する定義を持たせることができます。定義にアクセスするには、対象の関数や型の名前を指定した後に、ピリオド区切りで定義名を記述します。
item要素関数要素関数要素関数はsetルールやshowルールでカスタマイズできます。
itemsetルールやshowルールでカスタマイズできます。A term list item.