注意 当サイトは、Typst v0.11.1 公式ドキュメントを、日本語コミュニティが非公式に翻訳したものです。誤訳・未訳・古い情報が含まれている可能性があるため、公式ドキュメント との併用を推奨します。このサイトの内容に誤りを発見された方は、GitHubリポジトリまでご報告を頂けましたら幸いです。我々のコミュニティにご興味のある方は、ぜひ非公式Discordサーバー「くみはんクラブ」にご参加ください。
Warning: This site provides an unofficial translation of the Typst v0.11.1 documentation by the Japanese Community. Please note that there may be some inaccuracies, untranslated sections or outdated information. We highly recommend referring to the latest official documentation as well. If you find any errors in the content, please let us know through our GitHub repository. If you are interested in our community, feel free to join our unofficial Discord server, “Kumihan Club.”
Typst ドキュメント日本語版

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

Strikes through text.

Example

This is #strike[not] relevant.
Preview

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

stroke
auto length color gradient stroke pattern dictionary
Settable
Settable parameters can be customized for all following uses of the function with a set rule.

How to stroke the line.

If set to auto, takes on the text's color and a thickness defined in the current font.

Note: Please don't use this for real redaction as you can still copy paste the text.

Default:auto

View example
This is #strike(stroke: 1.5pt + red)[very stricken through]. \
This is #strike(stroke: 10pt)[redacted].
Preview

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

The position of the line relative to the baseline. Read from the font tables if auto.

This is useful if you are unhappy with the offset your font provides.

Default:auto

View example
#set text(font: "Inria Serif")
This is #strike(offset: auto)[low-ish]. \
This is #strike(offset: -3.5pt)[on-top].
Preview

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

The amount by which to extend the line beyond (or within if negative) the content.

Default:0pt

View example
This #strike(extent: -2pt)[skips] parts of the word.
This #strike(extent: 2pt)[extends] beyond the word.
Preview

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

Whether the line is placed behind the content.

Default:false

View example
#set strike(stroke: red)
#strike(background: true)[This is behind.] \
#strike(background: false)[This is in front.]
Preview

body
content
RequiredPositional
Positional parameters are specified in order, without names.

The content to strike through.