How to change figures' caption numbering

LIke I don’t want things like Figure 1, I want to show it like Image 1, a string can be set by myself.

Hi there @LRoInT, have a look at kind Figure Function – Typst Documentation

#figure(
  circle(radius: 10pt),
  caption: [A curious atom.],
  kind: "atom",
  supplement: [Atom],
)

Edit: Duplicate of How to rename a specific figure kind's supplement?

1 Like