How can I use a negative value in a positioning rule with glyph properties?
This works:
pos [a b c] @d' <${x:width*2} 0 ${x:width} 0>
But I need negative values, and get an error if I try to multiply with a negative value:
pos [a b c] @d' <${x:width*-2} 0 ${x:width*-1} 0>
This doesn’t work either:
pos [a b c] @d' <-${x:width*2} 0 -${x:width} 0>