Hello! How to make a single list to be numbered with letters without using the #set
command?
I tried this:
#enum(numbering: "a)")[
+ foo
+ bar
]
+ foo
+ bar
but the output doesn’t look correct. Currently, the output is
a) 1. foo
2. bar
whereas I expected
a) foo
b) bar
I also tried
#enum(numbering: "a)",
enum.item[foo],
enum.item[bar]
)
+ foo
+ bar
and it works fine, but maybe there is a simpler syntax for this?