Re: concatenating notes with a music expression

2018-05-15 Thread Gianmaria Lari
On 15 May 2018 at 15:45, David Kastrup wrote: > Gianmaria Lari writes: > > > On 15 May 2018 at 12:10, David Kastrup wrote: > > > >> Malte Meyn writes: > >> > >> > Am 15.05.2018 um 10:27 schrieb Gianmaria Lari: > >> >>

Re: concatenating notes with a music expression

2018-05-15 Thread David Kastrup
Gianmaria Lari writes: > On 15 May 2018 at 12:10, David Kastrup wrote: > >> Malte Meyn writes: >> >> > Am 15.05.2018 um 10:27 schrieb Gianmaria Lari: >> >> Thank you Gilles I have yet a problem, how can engrave the foo >> >>

Re: concatenating notes with a music expression

2018-05-15 Thread Gianmaria Lari
On 15 May 2018 at 12:10, David Kastrup wrote: > Malte Meyn writes: > > > Am 15.05.2018 um 10:27 schrieb Gianmaria Lari: > >> Thank you Gilles I have yet a problem, how can engrave the foo > >> generated list in a score? > > > > You should make a

Re: concatenating notes with a music expression

2018-05-15 Thread Gianmaria Lari
On 15 May 2018 at 11:40, Lukas-Fabian Moser wrote: > > Thank you Gilles I have yet a problem, how can engrave the foo > generated list in a score? > > Thank you Lukas & Malte. I tried your solutions and they works! Thanks!!! ___

Re: concatenating notes with a music expression

2018-05-15 Thread David Kastrup
Malte Meyn writes: > Am 15.05.2018 um 10:27 schrieb Gianmaria Lari: >> Thank you Gilles I have yet a problem, how can engrave the foo >> generated list in a score? > > You should make a music-function: > > \version "2.19.81" > > foo = > #(define-music-function (seq1

Re: concatenating notes with a music expression

2018-05-15 Thread Lukas-Fabian Moser
Thank you Gilles I have yet a problem, how can engrave the foo generated list in a score? #(make-sequential-music (foo seqI seqII)) or with list-splicing: #@(foo seqI seqII) Best Lukas ___ lilypond-user mailing list lilypond-user@gnu.org

Re: concatenating notes with a music expression

2018-05-15 Thread Malte Meyn
Am 15.05.2018 um 10:27 schrieb Gianmaria Lari: Thank you Gilles I have yet a problem, how can engrave the foo generated list in a score? You should make a music-function: \version "2.19.81" foo = #(define-music-function (seq1 seq2) (ly:music? ly:music?) (make-sequential-music

Re: concatenating notes with a music expression

2018-05-15 Thread Gianmaria Lari
On 15 May 2018 at 00:40, Gilles Thibault wrote: > Le 2018-05-12 00:16, Sirius Barras a écrit : > >> I have a sequence of notes and a music expression. >> How could be done a function concatenating each element of the sequence >> with the music expression? >> >> For instance, if

Re: concatenating notes with a music expression

2018-05-14 Thread Gilles Thibault
Le 2018-05-12 00:16, Sirius Barras a écrit : I have a sequence of notes and a music expression. How could be done a function concatenating each element of the sequence with the music expression? For instance, if the sequence is {c b a } and the music expression is { f g } I would like to

concatenating notes with a music expression

2018-05-11 Thread Sirius Barras
I have a sequence of notes and a music expression. How could be done a function concatenating each element of the sequence with the music expression? For instance, if the sequence is {c b a } and the music expression is { f g } I would like to obtain c f g b f g a f g Thanks