]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/midi/partcombine.ly
MIDI: add partcombine test.
[lilypond.git] / input / regression / midi / partcombine.ly
1 % Lily was here -- automatically converted by ../../../scripts/midi2ly.py from out/initial-key.midi
2 \version "2.13.53"
3
4 \layout {
5   \context {
6     \Voice
7     \remove "Note_heads_engraver"
8     \consists "Completion_heads_engraver"
9     \remove "Rest_engraver"
10     \consists "Completion_rest_engraver"
11   }
12 }
13
14 % included from ./out/initial-key.header
15 \header {
16 texidoc="Partcombined music is preserved"
17 options=""
18 }
19 % end
20
21 instrumentOne = \relative c' {
22   c4 d e f
23   R1
24   d'4 c b a
25   b4 g2 f4
26   e1
27 }
28
29 instrumentTwo = \relative g' {
30   R1
31   g4 a b c
32   d c b a
33   g f( e) d
34   e1
35 }
36
37 \score {
38 <<
39   \new Staff = "staff" \partcombine \instrumentOne \instrumentTwo
40   >>
41   \layout {}
42   \midi {}
43 }