> Date: Thu, 23 Mar 2017 10:12:41 +0100
> From: Michael K?ppler <[email protected]>
> To: [email protected]
> Subject: Partcombine: Ties break when followed by another one
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=utf-8; format=flowed
>
> Hi all,
>
> Lilypond's behaviour in the following example does not make sense to me.
>
> \version "2.19.0"
> \score {
> \new Staff {
> \partcombine
> { \time 3/8 b'8 b'4 ~ }
> { \time 3/8 es'8 es'4 ~ }
> \partcombine
> { b'4. R1*3/8 }
> % { es'4. ~ es' } % Does not show tie
> { es'4. R1*3/8 } % Does show tie
> }
> }
>
> Is this a known or unknown bug or do I miss something?
>
> Regards,
>
> Michael
>
>
You are trying to tie a note to a rest. You can only tie to a note of the same
pitch.
This works:
\version "2.19.0"
\score {
\new Staff {
\partcombine
{ \time 3/8 b'8 b'4 ~ }
{ \time 3/8 es'8 es'4 ~ }
\partcombine
% { b'4. R1*3/8 }
{ b'4.~ b' }
{ es'4. ~ es' } % Does not show tie
% { es'4. R1*3/8 } % Does show tie
}
}
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user