Re: syntax of numeric variables

2007-07-06 Thread Germain G. Ivanoff-Trinadtzaty
Rune Zedeler a écrit: before = 14 after = 10 \markup { \with-dimensions #'(0 . 0) #'(-10 . 14) AZERTY } The easiest is probably to use explicit cons instead of the shorthand '-notation: \markup { \with-dimensions #(cons 0 0) #(cons (- after) before) AZERTY } alternatively the correct mumbo-

Re: syntax of numeric variables

2007-07-05 Thread Rune Zedeler
Germain G. Ivanoff-Trinadtzaty skrev: Hi, In the following code: before = 14 after = 10 \markup { \with-dimensions #'(0 . 0) #'(-10 . 14) AZERTY } The easiest is probably to use explicit cons instead of the shorthand '-notation: \markup { \with-dimensions #(cons 0 0) #(cons (- after) befo

syntax of numeric variables

2007-07-05 Thread Germain G. Ivanoff-Trinadtzaty
Hi, In the following code: before = 14 after = 10 \markup { \with-dimensions #'(0 . 0) #'(-10 . 14) AZERTY } I would like to use the variables in the markup, instead of hardcoded numbers. I tried multiple combinations of # ' , ` ... prefixes, but I can't get it to work. What is the correct synta