]> git.donarmstrong.com Git - lilypond.git/blob - input/test/collisions.ly
release: 1.1.53
[lilypond.git] / input / test / collisions.ly
1 \header{
2 filename =       "collisions.ly";
3 description =    "random counterpoint to test collisions";
4 enteredby =      "HWN,JCN";
5 copyright =      "public domain";
6 Tested =         "test the Collision resolution ";
7 }
8 \version "1.1.52";
9
10 twovoice = \context Staff \notes < 
11         \context Voice=i { \stemdown c4 d e f g2~  g4 a [c8 d e f] c2| }
12         \context Voice=ii { \stemup g4 f e g ~ g2 g2  c4 g4 g2 } 
13 >
14
15 twovoicesteminvert = \context Staff \notes <  
16         % the f and g on 4th beat are exceptionally ugh.
17         \context Voice=i { \stemup c4 d e f g2 g4 a | }
18         \context Voice=ii { \stemdown g4 f e g  g2 g2 } 
19 >
20
21 threevoice = \context Staff \notes <
22         \context Voice=i { \stemup g4 f e f g a g2 }
23         \context Voice=ii { \stemup \property Voice.horizontalNoteShift = 1 e2  e2  e2  e2 }
24         \context Voice=iii { \stemdown c4 d e d c d es }
25 >
26
27 \score{
28         \notes \transpose c'' {  \twovoice  
29         \twovoicesteminvert 
30         \threevoice  
31
32         }
33         
34
35         
36 %       \midi { \tempo 4:80 }
37 }