]> git.donarmstrong.com Git - lilypond.git/blob - input/test/part-combine.ly
85efe4eee78e70a42e62595a88d9c6a115aabf65
[lilypond.git] / input / test / part-combine.ly
1 \score{
2         \context Staff = flauti <
3                 \time 4/4;
4
5                 \context Voice=one \partcombine Voice
6                         \context Thread=one \notes\relative c''
7                                 {
8                                         c4 d e f
9                                         b,4 d c d
10                                         r2 e4 f
11                                         c4 d e f
12                                         c4 r e f
13                                         c4 r e f
14                                         c4 r a r
15                                         a a r a
16                                         a2 \property Voice.soloADue = ##f a
17                                 }
18                         \context Thread=two \notes\relative c''
19                                 {
20                                         g4 b d f
21                                         r2 c4 d
22                                         a c c d
23                                         a4. b8 c4 d
24                                         c r e r
25                                         r2 s2
26                                         a,4 r a r
27                                         a r r a
28                                         a2 \property Voice.soloADue = ##f a
29                                 }
30                 >
31         \paper{
32                 linewidth = 140.\mm;
33                 \translator{
34                         \ThreadContext
35                         \consists Rest_engraver;
36                 }
37                 \translator{
38                         \VoiceContext
39                         \remove Rest_engraver;
40                 }
41         }
42 }