Re: Tie multiple voice music contained in variable

2019-11-13 Thread Aaron Hill
On 2019-11-13 3:37 am, Gianmaria Lari wrote: Ciao Aaron, [] And you can use tags if you need the tie to be conditional: \version "2.19.83" multipleVoiceConditionalTie = \fixed c' { << { g4 \tag #'tie a~ \tag #'noTie a } \\ { e2 } >> } Yes, I didn't forget tags; but to me they

Re: Tie multiple voice music contained in variable

2019-11-13 Thread Gianmaria Lari
Ciao Aaron, [] > And you can use tags if you need the tie to be conditional: > > > \version "2.19.83" > > multipleVoiceConditionalTie = \fixed c' { ><< { g4 \tag #'tie a~ \tag #'noTie a } \\ { e2 } >> > } > Yes, I didn't forget tags; but to me they are syntactically difficult to

Re: Tie multiple voice music contained in variable

2019-11-13 Thread Gianmaria Lari
Ciao Harm, P.S. My apologies if I included the images in the email and not attached it > it's for clarity. Please let me know if you lilypond email users always > prefer to attach images at the end of the messages. > > Please always attach and use plain text ;) > Well, I saw my beard well grown

Re: Tie multiple voice music contained in variable

2019-11-13 Thread Aaron Hill
On 2019-11-13 2:37 am, Aaron Hill wrote: On 2019-11-13 2:16 am, Gianmaria Lari wrote: Probably it doesn't exist a simple solution and the best would to keep the last measure outside the variable. Embedding the tie within the variable seems to work: \version "2.19.83"

Re: Tie multiple voice music contained in variable

2019-11-13 Thread Thomas Morley
Am Mi., 13. Nov. 2019 um 11:17 Uhr schrieb Gianmaria Lari < gianmarial...@gmail.com>: P.S. My apologies if I included the images in the email and not attached it it's for clarity. Please let me know if you lilypond email users always prefer to attach images at the end of the messages. Please

Re: Tie multiple voice music contained in variable

2019-11-13 Thread Aaron Hill
On 2019-11-13 2:16 am, Gianmaria Lari wrote: Probably it doesn't exist a simple solution and the best would to keep the last measure outside the variable. Embedding the tie within the variable seems to work: \version "2.19.83" multipleVoiceWithUnterimnatedTie = \fixed c' { << { g4 a~

Re: Tie multiple voice music contained in variable

2019-11-13 Thread Gianmaria Lari
Michael you gave me the solution! Or at least you gave me the solution for my simple example. The following works! \version "2.21.0" pa = {<< {e'1*~*}\\{c'1*~*}>>} { \pa \pa } Now I have to try in my real file code but I don't see any reason why it should not work Thank you! g. On Wed,

Re: Tie multiple voice music contained in variable

2019-11-13 Thread Gianmaria Lari
On Wed, 13 Nov 2019 at 10:01, Michael Käppler wrote: > Hi Gianmaria, > Interesting, for me running 2.19.80 the first example does not compile, > either. > Yes, I vaguely remember that version 2.21 manage differently ties/variable. And probably that was the reason why I decided to use it :) >

Re: Tie multiple voice music contained in variable

2019-11-13 Thread Michael Käppler
Hi Gianmaria, Interesting, for me running 2.19.80 the first example does not compile, either. Was there a recent change regarding post-event handling? The problem is that the tie is not a separate expression that you could  concatenate with other musical expressions like bla = { e'1 } foo = { ~

Tie multiple voice music contained in variable

2019-11-12 Thread Gianmaria Lari
The following code containing a tie between variables, compiles and works perfectly: \version "2.21.0" pa = {e'1} *{ \pa~\pa } * %here is the tie! Is there any way to do the same in case the variable contains two voices like in the following code? \version "2.21.0" pa = {<< {e'1}\\{c'1}>>} {