Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-05 Thread Federico Bruni
Il giorno ven 4 mag 2018 alle 12:16, Aaron Hill ha scritto: On 2018-05-04 05:19, Federico Bruni wrote: Perhaps a smart function may be created but as I need only 4 variations I can simply use 4 variables: unoT = \markup \concat { \finger 1 \fontsize #-2.5 \raise #0.03 \bold t } dueT =

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-04 Thread Aaron Hill
On 2018-05-04 05:19, Federico Bruni wrote: Perhaps a smart function may be created but as I need only 4 variations I can simply use 4 variables: unoT = \markup \concat { \finger 1 \fontsize #-2.5 \raise #0.03 \bold t } dueT = \markup \concat { \finger 2 \fontsize #-2.5 \raise #0.03 \bold t }

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-03 Thread Federico Bruni
Il giorno ven 4 mag 2018 alle 6:54, Federico Bruni ha scritto: Il giorno gio 3 mag 2018 alle 9:47, Torsten =?iso-8859-1?q?H=E4mmerle?= <"torsten.haemmerle"@web.de> ha scritto: Hi all, And the remaining problem of \finger in this case is that \finger (just as \number) uses the Feta num

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-03 Thread Federico Bruni
Il giorno gio 3 mag 2018 alle 9:47, Torsten =?iso-8859-1?q?H=E4mmerle?= <"torsten.haemmerle"@web.de> ha scritto: Hi all, And the remaining problem of \finger in this case is that \finger (just as \number) uses the Feta numbers from the Emmentaler notation font. As this font does not contain

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-03 Thread Torsten Hämmerle
Hi all, And the remaining problem of \finger in this case is that \finger (just as \number) uses the Feta numbers from the Emmentaler notation font. As this font does not contain the letter "t", the t will be taken from a replacement font (in this case some sans serif font). The best out-of-the-b

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-03 Thread David Kastrup
Federico Bruni writes: > Il giorno mer 2 mag 2018 alle 8:49, Gianmaria Lari > ha scritto: >> >> Not sure that this is what you want, but what about >> >>> \version "2.19.81" >>> { a\finger "3t"} >> >> ? > > Well, this produces the same output of David's function. Darn. I was not aware that t

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-03 Thread David Kastrup
Federico Bruni writes: > Il giorno mer 2 mag 2018 alle 8:56, David Kastrup ha > scritto: >> Federico Bruni writes: >> >>> Hi all >>> >>> How can I create custom fingerings which are made of a number and a >>> letter? >>> I want to display 3t, 2t, etc. >>> >>> I found this snippet in the LS

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-02 Thread Federico Bruni
Il giorno mer 2 mag 2018 alle 8:49, Gianmaria Lari ha scritto: On 2 May 2018 at 08:46, Federico Bruni wrote: Hi all How can I create custom fingerings which are made of a number and a letter? I want to display 3t, 2t, etc. I found this snippet in the LSR: http://lsr.di.unimi.it/LSR/It

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-02 Thread Federico Bruni
Il giorno mer 2 mag 2018 alle 8:56, David Kastrup ha scritto: Federico Bruni writes: Hi all How can I create custom fingerings which are made of a number and a letter? I want to display 3t, 2t, etc. I found this snippet in the LSR: http://lsr.di.unimi.it/LSR/Item?id=83 but it all

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-02 Thread David Kastrup
Gianmaria Lari writes: > On 2 May 2018 at 09:25, David Kastrup wrote: > >> Gianmaria Lari writes: >> >> > On 2 May 2018 at 08:56, David Kastrup wrote: >> >> >> >> Something like this? >> >> >> >> \version "2.19.81" >> >> >> >> t = >> >> #(define-event-function (n) (index?) >> >> #{ \tweak te

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-02 Thread Gianmaria Lari
On 2 May 2018 at 09:25, David Kastrup wrote: > Gianmaria Lari writes: > > > On 2 May 2018 at 08:56, David Kastrup wrote: > >> > >> Something like this? > >> > >> \version "2.19.81" > >> > >> t = > >> #(define-event-function (n) (index?) > >> #{ \tweak text #(format "~dt" n) -1 #}) > >> > >> {

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-02 Thread David Kastrup
Gianmaria Lari writes: > On 2 May 2018 at 08:56, David Kastrup wrote: >> >> Something like this? >> >> \version "2.19.81" >> >> t = >> #(define-event-function (n) (index?) >> #{ \tweak text #(format "~dt" n) -1 #}) >> >> { >> c\t1 d\t2 e2 >> } >> > > interesting! As you know David, to indica

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-02 Thread Gianmaria Lari
On 2 May 2018 at 08:56, David Kastrup wrote: > Federico Bruni writes: > > > Hi all > > > > How can I create custom fingerings which are made of a number and a > > letter? > > I want to display 3t, 2t, etc. > > > > I found this snippet in the LSR: > > http://lsr.di.unimi.it/LSR/Item?id=83 > > > >

Re: tenuto fingering: 3t, 2t, 4t, etc.

2018-05-01 Thread David Kastrup
Federico Bruni writes: > Hi all > > How can I create custom fingerings which are made of a number and a > letter? > I want to display 3t, 2t, etc. > > I found this snippet in the LSR: > http://lsr.di.unimi.it/LSR/Item?id=83 > > but it allows to use only one character. > > Thanks in advance > Fede

tenuto fingering: 3t, 2t, 4t, etc.

2018-05-01 Thread Federico Bruni
Hi all How can I create custom fingerings which are made of a number and a letter? I want to display 3t, 2t, etc. I found this snippet in the LSR: http://lsr.di.unimi.it/LSR/Item?id=83 but it allows to use only one character. Thanks in advance Federico ___