diff --git a/docs/changelog/0.10.0.md b/docs/changelog/0.10.0.md index 9a308e8f4b..ba5c0411db 100644 --- a/docs/changelog/0.10.0.md +++ b/docs/changelog/0.10.0.md @@ -31,7 +31,7 @@ description: Changes in Typst 0.10.0 - More LaTeX commands (e.g. for quotes) are now respected in `.bib` files ## Visualization -- Added support for [patterns]($pattern) as fills and strokes +- Added support for [patterns]($tiling) as fills and strokes - The `alpha` parameter of the [`components`]($color.components) function on colors is now a named parameter **(Breaking change)** - Added support for the [Oklch]($color.oklch) color space diff --git a/docs/changelog/0.11.1.md b/docs/changelog/0.11.1.md index a8a7db7daa..63d840004f 100644 --- a/docs/changelog/0.11.1.md +++ b/docs/changelog/0.11.1.md @@ -37,7 +37,7 @@ description: Changes in Typst 0.11.1 ## Export - Fixed [smart quotes]($smartquote) in PDF outline -- Fixed [patterns]($pattern) with spacing in PDF +- Fixed [patterns]($tiling) with spacing in PDF - Fixed wrong PDF page labels when [page numbering]($page.numbering) was disabled after being previously enabled diff --git a/docs/reference/language/syntax.md b/docs/reference/language/syntax.md index fdc1792e28..1d89db814a 100644 --- a/docs/reference/language/syntax.md +++ b/docs/reference/language/syntax.md @@ -105,18 +105,18 @@ Typstは、最も一般的な文書要素に対する組み込みのマークア | コードブロック | `{{ let x = 1; x + 2 }}` | [Scripting]($scripting/#blocks) | | コンテンツブロック | `{[*Hello*]}` | [Scripting]($scripting/#blocks) | | 括弧付き式 | `{(1 + 2)}` | [Scripting]($scripting/#blocks) | -| 配列 | `{(1, 2, 3)}` | [Array]($type/$array) | -| 辞書 | `{(a: "hi", b: 2)}` | [Dictionary]($type/$dictionary) | +| 配列 | `{(1, 2, 3)}` | [Array]($array) | +| 辞書 | `{(a: "hi", b: 2)}` | [Dictionary]($dictionary) | | 単項演算子 | `{-x}` | [Scripting]($scripting/#operators) | | 二項演算子 | `{x + y}` | [Scripting]($scripting/#operators) | | 代入 | `{x = 1}` | [Scripting]($scripting/#operators) | | フィールドアクセス | `{x.y}` | [Scripting]($scripting/#fields) | | メソッド呼び出し | `{x.flatten()}` | [Scripting]($scripting/#methods) | -| 関数呼び出し | `{min(x, y)}` | [Function]($type/$function) | -| 引数展開 | `{min(..nums)}` | [Arguments]($type/$arguments) | -| 無名関数 | `{(x, y) => x + y}` | [Function]($type/$function) | +| 関数呼び出し | `{min(x, y)}` | [Function]($function) | +| 引数展開 | `{min(..nums)}` | [Arguments]($arguments) | +| 無名関数 | `{(x, y) => x + y}` | [Function]($function) | | letバインディング | `{let x = 1}` | [Scripting]($scripting/#bindings) | -| 名前付き関数 | `{let f(x) = 2 * x}` | [Function]($type/$function) | +| 名前付き関数 | `{let f(x) = 2 * x}` | [Function]($function) | | setルール | `{set text(14pt)}` | [Styling]($styling/#set-rules) | | set-ifルール | `{set text(..) if .. }` | [Styling]($styling/#set-rules) | | show-setルール | `{show heading: set block(..)}` | [Styling]($styling/#show-rules) | @@ -127,7 +127,7 @@ Typstは、最も一般的な文書要素に対する組み込みのマークア | forループ | `{for x in (1, 2, 3) {..}}` | [Scripting]($scripting/#loops) | | whileループ | `{while x < 10 {..}}` | [Scripting]($scripting/#loops) | | ループ制御フロー | `{break, continue}` | [Scripting]($scripting/#loops) | -| 関数からのリターン | `{return x}` | [Function]($type/$function) | +| 関数からのリターン | `{return x}` | [Function]($function) | | モジュールをインクルード | `{include "bar.typ"}` | [Scripting]($scripting/#modules) | | モジュールをインポート | `{import "bar.typ"}` | [Scripting]($scripting/#modules) | | モジュールからのインポート | `{import "bar.typ": a, b, c}` | [Scripting]($scripting/#modules) |