Hello everyone! Is it possible to specify a custom character for a specific list item?
My document uses a Cyrillic alphabet, and because of this, I try to make my lists to look like
а) foo
б) bar
в) baz
instead of
a) foo
b) bar
c) baz
Currently, Cyrillic is not supported for numbering patterns out of the box (see #1595 and #5597), and this is why I tried to adopt one of the examples from https://typst.app/docs/reference/model/enum/ instead. Here is my version:
#enum(
enum.item("а)")[foo],
enum.item("б)")[bar],
enum.item("в)")[baz]
)
but this doesn’t seem to work.
What I’m doing wrong?