Re: tie from measure with one voice to a measure with two voices

2017-03-16 Thread Juan Cristóbal Cerrillo
Many thanks for your clarification. All best, jc ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: tie from measure with one voice to a measure with two voices

2017-03-16 Thread Andrew Bernard
Hello Juan, If your read the manual on simultaneous voices carefully you will find that if you use the '\\' construct the tie will not go across, but if you use the \new Voice construct, then the first voice in the simultaneous music is a continuation of the current voice, and ties work. Thus:

Re: tie from measure with one voice to a measure with two voices

2017-03-16 Thread Juan Cristóbal Cerrillo
Hello Hwaen, Thanks for your input. Yes, your example is simpler, but the problem is I am working on a much more complex score that requires voices to be created only at specific moments. Consider the following case. It seems odd to have to specify that a voice is empty for four measures in

Re: tie from measure with one voice to a measure with two voices

2017-03-16 Thread Hwaen Ch'uqi
Greetings JC, Well, this may not be as simple as what you are looking for, but it certainly would help to streamline your code> \score { \relative c'' { << { d2 e2~ e2 f } \\ { s1 c4 d e f } >> } } Hwaen Ch'uqi On

tie from measure with one voice to a measure with two voices

2017-03-16 Thread Juan Cristóbal Cerrillo
Hello, I’m looking for a simpler way of being able to tie notes in a voice from a measure with only one voice to a measure with two voices. The only way I have managed to do so is to create an empty voice in the first measure (see last example of snippet). Is there a simpler way of doing