]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/part-combine-silence-mixed.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / part-combine-silence-mixed.ly
1 \version "2.19.16"
2
3 \header {
4   texidoc = "Different kinds of silence are not merged into the shared voice even if they begin and end simultaneously; however, when rests and skips are present in the same part, the skips are ignored."
5 }
6
7 \score { <<
8   \new Staff {
9     \partcombine
10       \relative f' { R1^"R" | s1^"s" | r1^"r" | << R1 s1 s4 >> | << r1 s2 s4 >> }
11       \relative f' { r1_"r" | R1_"R" | s1_"s" | << s4 s1 R1 >> | << s4 s2 r1 >> }
12   }
13   \new Staff {
14     \partcombine
15       \relative f' { r1^"r" | R1^"R" | s1^"s" | << s4 s1 R1 >> | << s4 s2 r1 >> }
16       \relative f' { R1_"R" | s1_"s" | r1_"r" | << R1 s1 s4 >> | << r1 s2 s4 >> }
17   }
18 >> }