]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/dynamic-switch.ly
patch::: 1.5.7.jcn1
[lilypond.git] / input / bugs / dynamic-switch.ly
1 \header{
2 % what's the problem?
3 % well, that's elementary my dear watson
4 texidoc="The decrescendo disappears when the part combiner decides that
5 the a2 and c2 should be a chord in one voice.  Using the commented
6 version, with a c2 instead of a2, the decrescendo reappears."
7 }
8 \version "1.3.148"
9
10 \score{
11         \context Staff <
12                 \context Voice=one \skip 1
13                 \context Voice=two \skip 1
14                 \context Voice=one \partcombine Voice
15                         \context Thread=one \notes\relative c'' {
16                                 c2 \clef bass c2
17                                 c2 c2
18                         }
19                         \context Thread=two \notes\relative c'' {
20                                 b2 \< a4 () \! a
21                                 %c2 \> a4 () \! a
22                                 a2 \> a4 () \! a
23                         }
24         >
25         \paper{
26                 linewidth=140.\mm
27         }
28 }
29
30