Re: Syntax error, unexpected UNSIGNED

2018-05-15 Thread Andrés Westra
I just fund out that it only works with version 2.19. Sorry for the spam, I was getting crazy. El mar., 15 de may. de 2018 a la(s) 19:01, Andrés Westra < westra...@gmail.com> escribió: > Hi, I,m working in a project an suddenly this error apears. I no longer > can write: > > \version "2.18.2" >

Syntax error, unexpected UNSIGNED

2018-05-15 Thread Andrés Westra
Hi, I,m working in a project an suddenly this error apears. I no longer can write: \version "2.18.2" \relative {c4 8 8 8. 16} This apears in the logs: error: syntax error, unexpected UNSIGNED \relative {c4 8 8 8. 16} Before I was able to write that, now it only works if I

Re: split { {a b} {c' d'} {e' f'} } in multiple expression

2018-05-15 Thread Andrew Bernard
Hi Gianmaria, >From your posts I suspect you may find a use for Abjad. Have you looked into it? Just a suggestion. Andrew On 16 May 2018 at 02:43, Gianmaria Lari wrote: > I have a musical expression made of several musical expression like the > following: > > { {a

split { {a b} {c' d'} {e' f'} } in multiple expression

2018-05-15 Thread Gianmaria Lari
I have a musical expression made of several musical expression like the following: { {a b} {c' d'} {e' f'} } I would like to loop on it and generate a different score with each sub-expression. Something like this: { foreach x in X \myScore \x } How can I do it? Thank you. P.S. The

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: LilyPond and FontForge

2018-05-15 Thread foxfanfare
tisimst wrote > Glad to hear you got something working! Congrats! There are a lot of > nuances you should be aware of. It's not as cut-and-dry as it appears, but > getting something working at all is half the battle. > > I'm curious to know how you used TTX to accomplish the task. I can see how >

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