Good afternoon Bug List,

I stumble into a partcombine bug. At times, \partcombine extends hairpins over (possibly long) stretches to the wrong terminating dynamic. In the top staff of the attached MWE, the erroneous behaviour is shown. The bottom staff group shows the intended behaviour. If I specify any of \partcombineApart or \partcombineChords, the bug disappears, second and third staves.

Cordial greetings from Amsterdam,

Rutger Hofman
\version "2.19.59"

\paper {
    indent = 40
}


fuegoTrpI = \relative c'' {
    \time 2/4
    a2\> <>\! |
    R2 |
    b8\f c r4 |
}

fuegoTrpII = \relative c'' {
    \time 2/4
    a,2\> <>\! |
    R2 |
    b4\f r4 |
}

\score {
    <<
        \new Staff \with { instrumentName = "\partcombine" } {
            \partcombine
                \fuegoTrpI
                \fuegoTrpII
        }

        \new Staff \with { instrumentName = "\partcombineApart" } {
            \partcombine
                { \partcombineApart \fuegoTrpI }
                \fuegoTrpII
        }

        \new Staff \with { instrumentName = "\partcombineChords" } {
            \partcombine
                { \partcombineChords \fuegoTrpI }
                \fuegoTrpII
        }

        \new StaffGroup \with { instrumentName = "Voice per Staff" } <<
            \new Staff { \fuegoTrpI }
            \new Staff { \fuegoTrpII }
        >>
    >>
}
_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to