Re: variable of type finger

2018-06-25 Thread David Kastrup
Gianmaria Lari writes: > On Mon, 25 Jun 2018 at 22:44, David Kastrup wrote: >> >> #(display #{ \finger "3" #}) >> >> compiles just fine even if its output is not particularly legible. >> > > The problem was " wherever you can put Scheme expressions" I tried > to use it where lilypond expects

Re: variable of type finger

2018-06-25 Thread Gianmaria Lari
On Mon, 25 Jun 2018 at 22:44, David Kastrup wrote: > Gianmaria Lari writes: > > > On Mon, 25 Jun 2018 at 15:49, David Kastrup wrote: > > > >> Gianmaria Lari writes: > >> > >> > This code define a variable containing a duration and the use it: > >> > > >> > \version "2.19.81" > >> > #(define my

Re: variable of type finger

2018-06-25 Thread David Kastrup
Gianmaria Lari writes: > On Mon, 25 Jun 2018 at 15:49, David Kastrup wrote: > >> Gianmaria Lari writes: >> >> > This code define a variable containing a duration and the use it: >> > >> > \version "2.19.81" >> > #(define myDuration (ly:make-duration 4 0)) >> > { a\myDuration} >> > >> > >> > I c

Re: variable of type finger

2018-06-25 Thread Gianmaria Lari
On Mon, 25 Jun 2018 at 15:49, David Kastrup wrote: > Gianmaria Lari writes: > > > This code define a variable containing a duration and the use it: > > > > \version "2.19.81" > > #(define myDuration (ly:make-duration 4 0)) > > { a\myDuration} > > > > > > I can do something similar wit fingering:

Re: variable of type finger

2018-06-25 Thread David Kastrup
Gianmaria Lari writes: > This code define a variable containing a duration and the use it: > > \version "2.19.81" > #(define myDuration (ly:make-duration 4 0)) > { a\myDuration} > > > I can do something similar wit fingering: > > \version "2.19.81" > myFinger = \finger "3" > { a\myFinger} > > > H