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

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

Under/Over

Delimiters above or below parts of an equation.

The braces and brackets further allow you to add an optional annotation below or above themselves.

Function

underline
Element
ヘルプアイコン

A horizontal line under content.

math.underline()->
$ underline(1 + 2 + ... + 5) $
Preview

body
Required
ヘルプアイコン
Positional
ヘルプアイコン

The content above the line.

overline
Element
ヘルプアイコン

A horizontal line over content.

math.overline()->
$ overline(1 + 2 + ... + 5) $
Preview

body
Required
ヘルプアイコン
Positional
ヘルプアイコン

The content below the line.

underbrace
Element
ヘルプアイコン

A horizontal brace under content, with an optional annotation below.

math.underbrace()->
$ underbrace(1 + 2 + ... + 5, "numbers") $
Preview

body
Required
ヘルプアイコン
Positional
ヘルプアイコン

The content above the brace.

annotation
Positional
ヘルプアイコン
Settable
ヘルプアイコン

The optional content below the brace.

デフォルト値:

none

overbrace
Element
ヘルプアイコン

A horizontal brace over content, with an optional annotation above.

math.overbrace()->
$ overbrace(1 + 2 + ... + 5, "numbers") $
Preview

body
Required
ヘルプアイコン
Positional
ヘルプアイコン

The content below the brace.

annotation
Positional
ヘルプアイコン
Settable
ヘルプアイコン

The optional content above the brace.

デフォルト値:

none

underbracket
Element
ヘルプアイコン

A horizontal bracket under content, with an optional annotation below.

math.underbracket()->
$ underbracket(1 + 2 + ... + 5, "numbers") $
Preview

body
Required
ヘルプアイコン
Positional
ヘルプアイコン

The content above the bracket.

annotation
Positional
ヘルプアイコン
Settable
ヘルプアイコン

The optional content below the bracket.

デフォルト値:

none

overbracket
Element
ヘルプアイコン

A horizontal bracket over content, with an optional annotation above.

math.overbracket()->
$ overbracket(1 + 2 + ... + 5, "numbers") $
Preview

body
Required
ヘルプアイコン
Positional
ヘルプアイコン

The content below the bracket.

annotation
Positional
ヘルプアイコン
Settable
ヘルプアイコン

The optional content above the bracket.

デフォルト値:

none

underparen
Element
ヘルプアイコン

A horizontal parenthesis under content, with an optional annotation below.

math.underparen()->
$ underparen(1 + 2 + ... + 5, "numbers") $
Preview

body
Required
ヘルプアイコン
Positional
ヘルプアイコン

The content above the parenthesis.

annotation
Positional
ヘルプアイコン
Settable
ヘルプアイコン

The optional content below the parenthesis.

デフォルト値:

none

overparen
Element
ヘルプアイコン

A horizontal parenthesis over content, with an optional annotation above.

math.overparen()->
$ overparen(1 + 2 + ... + 5, "numbers") $
Preview

body
Required
ヘルプアイコン
Positional
ヘルプアイコン

The content below the parenthesis.

annotation
Positional
ヘルプアイコン
Settable
ヘルプアイコン

The optional content above the parenthesis.

デフォルト値:

none

undershell
Element
ヘルプアイコン

A horizontal tortoise shell bracket under content, with an optional annotation below.

math.undershell()->
$ undershell(1 + 2 + ... + 5, "numbers") $
Preview

body
Required
ヘルプアイコン
Positional
ヘルプアイコン

The content above the tortoise shell bracket.

annotation
Positional
ヘルプアイコン
Settable
ヘルプアイコン

The optional content below the tortoise shell bracket.

デフォルト値:

none

overshell
Element
ヘルプアイコン

A horizontal tortoise shell bracket over content, with an optional annotation above.

math.overshell()->
$ overshell(1 + 2 + ... + 5, "numbers") $
Preview

body
Required
ヘルプアイコン
Positional
ヘルプアイコン

The content below the tortoise shell bracket.

annotation
Positional
ヘルプアイコン
Settable
ヘルプアイコン

The optional content above the tortoise shell bracket.

デフォルト値:

none

検索