Hi,
I have defined the following function
#let c = counter("c")
#let rr(
coun
) = {
coun.step()
context coun.display()
}
The code
Hello
#rr(c)
#rr(c)
Works as expected and outputs “Hello 1 2”. The code
שלום
#rr(c)
#rr(c)
Outputs “שלום 0 1”, while the code
שלום
#rr(c)
#rr(c)
produces “שלום 0 2”.
I think the problem might be related to the fact that because of the change of direction, the counter is not incremented at the right time, but I can’t find a workaround. What can I do?