Skip to content

question方法

参数及其默认值

typst
<!-- 使用方法 -->
#question(label-color: green)[
  $(1 + 5i)i$ 的虚部为 #paren[]
  #choices([$-1$], [$0$], [$1$], [$6$])
]

body-indent

type: length

default: 0.6em

该参数用于设置题目和题号间的间隔

indent

type: length

default: 0pt

该参数用于设置题目的缩进

line-height

type: length

default: auto

该参数用于设置题目的行高,当题目中的公式比较高时,题号和题目会错位,这时可以通过该参数来微调。

label

type: str | function

default: auto

该参数用于设置题号的类型

TIP

若要修改题号类型,可参考官方文档 numbering 的参数设置

label-color

type: color

default: black

该参数用于设置题号的颜色

label-weight

type: str | int

default: regular

该参数用于设置题号字体的粗细

points

type: none | int

default: none

该参数用于设置题目的分值

points-separate-par

type: boolean

default: true

该参数用于设置题目的分值是否独占一行

points-prefix

type: str

default: " ("

该参数用于设置题目分值前缀

points-suffix

type: str

default: "分)"

该参数用于设置题目的分值后缀

top

type: length

default: 0pt

该参数用于设置题目距离上方的距离

bottom

type: length

default: 0pt

该参数用于设置题目距离下方的距离

with-heading-label

type: none | boolean

default: none

该参数用于设置题目是否带有标题的标签

body

type: content

该参数为位置参数,题目的内容

Released under the MIT License.