Re: scheme function with string

2018-11-19 Thread Gianmaria Lari
On Mon, 19 Nov 2018 at 16:06, David Kastrup wrote: > Gianmaria Lari writes: > > > I have this simple scheme substitution function > > > > myFin = #(define-music-function (m) (ly:music?) > > #{ \addStringNumber \addFingering $m "1x2x" "x3x4" #} > > ) > > > > > > It simply adds some fingering

Re: scheme function with string

2018-11-19 Thread David Kastrup
Gianmaria Lari writes: > I have this simple scheme substitution function > > myFin = #(define-music-function (m) (ly:music?) > #{ \addStringNumber \addFingering $m "1x2x" "x3x4" #} > ) > > > It simply adds some fingering and string numbers on the musical expression > argument m. I use like t

scheme function with string

2018-11-19 Thread Gianmaria Lari
I have this simple scheme substitution function myFin = #(define-music-function (m) (ly:music?) #{ \addStringNumber \addFingering $m "1x2x" "x3x4" #} ) It simply adds some fingering and string numbers on the musical expression argument m. I use like this: \myFin {a b c' d'} I would like