未翻訳
このページはまだ翻訳されていません。原文の内容が表示されています。
overline
ElementElementElement functions can be customized with set
and show
rules.
Element
Element functions can be customized with
set
and show
rules.Adds a line over text.
Example
#overline[A line over text.]

引数ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters
Parameters are the inputs to a function. They are specified in parentheses after the function name.
stroke
How to stroke the line.
If set to auto
, takes on the text's color and a thickness defined in
the current font.
デフォルト値: auto
例を表示
#set text(fill: olive)
#overline(
stroke: green.darken(20%),
offset: -12pt,
[The Forest Theme],
)

offset
The position of the line relative to the baseline. Read from the font
tables if auto
.
デフォルト値: auto
例を表示
#overline(offset: -1.2em)[
The Tale Of A Faraway Line II
]

extent
SettableSettableSettable parameters can be customized for all following uses of the function with a set
rule.
Settable
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.
デフォルト値: 0pt
例を表示
#set overline(extent: 4pt)
#set underline(extent: 4pt)
#overline(underline[Typography Today])

evade
SettableSettableSettable parameters can be customized for all following uses of the function with a set
rule.
Settable
Settable
Settable parameters can be customized for all following uses of the function with a
set
rule.Whether the line skips sections in which it would collide with the glyphs.
デフォルト値: true
例を表示
#overline(
evade: false,
offset: -7.5pt,
stroke: 1pt,
extent: 3pt,
[Temple],
)

background
SettableSettableSettable parameters can be customized for all following uses of the function with a set
rule.
Settable
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 it overlines.
デフォルト値: false
例を表示
#set overline(stroke: (thickness: 1em, paint: maroon, cap: "round"))
#overline(background: true)[This is stylized.] \
#overline(background: false)[This is partially hidden.]

body
RequiredRequiredRequired parameters must be specified when calling the function.PositionalPositionalPositional parameters are specified in order, without names.
Required
Required
Required parameters must be specified when calling the function.
Positional
Positional
Positional parameters are specified in order, without names.
The content to add a line over.