lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Partcombine: Ties break when followed by another one


From: Joseph Austin
Subject: Re: Partcombine: Ties break when followed by another one
Date: Thu, 23 Mar 2017 09:09:35 -0400

> Date: Thu, 23 Mar 2017 10:12:41 +0100
> From: Michael K?ppler <address@hidden>
> To: address@hidden
> Subject: Partcombine: Ties break when followed by another one
> Message-ID: <address@hidden>
> 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
    }
}





reply via email to

[Prev in Thread] Current Thread [Next in Thread]