overline
元素
元素函数可以通过 set 和 show 规则进行样式自定义。
元素函数可以通过 set 和 show 规则进行样式自定义。
在文本上添加上划线。
Example
#overline[A line over text.]
参数
参数是函数的输入,它们在函数名称后面的括号中传入。
参数是函数的输入,它们在函数名称后面的括号中传入。
overline(
stroke: autolengthcolorgradientstrokepatterndictionary, offset: autolength, extent: length, evade: bool, background: bool, content,
) -> contentstroke
如何绘制线条。
详细内容参见 line 的文档 如果设为 auto
, 则采用文本颜色和当前字体定义的粗细。
默认:auto
查看示例
#set text(fill: olive)
#overline(
stroke: green.darken(20%),
offset: -12pt,
[The Forest Theme],
)
offset
上划线相对于基准线的位置。如果设为 auto
,则从字体表中读取。
默认:auto
查看示例
#overline(offset: -1.2em)[
The Tale Of A Faraway Line II
]
extent
超出文本长度的量(如果设为负数则缩短)。
默认:0pt
查看示例
#set overline(extent: 4pt)
#set underline(extent: 4pt)
#overline(underline[Typography Today])
evade
是否跳过与字形冲突的部分。
默认:true
查看示例
#overline(
evade: false,
offset: -7.5pt,
stroke: 1pt,
extent: 3pt,
[Temple],
)
background
上划线是否位于内容后面。
默认:false
查看示例
#set overline(stroke: (thickness: 1em, paint: maroon, cap: "round"))
#overline(background: true)[This is stylized.] \
#overline(background: false)[This is partially hidden.]
body
要添加上划线的内容。