]> git.donarmstrong.com Git - lilypond.git/blob - input/test/collisions.ly
release: 1.1.59
[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 chordstest = \context Staff \notes <
28         \context Voice = i \relative c {
29                 \stemup e4 dis c f g f a b b
30         }
31         \context Voice = ii \relative c {
32                 \stemdown <a4 c> <a4 c> <a4 e'> <a4 c> <e' a> <e a> <e a> <a c> <a d>
33         }
34 >
35
36 \score{
37         \notes \transpose c'' {  \twovoice  
38         \twovoicesteminvert 
39         \threevoice
40         \break \chordstest
41         }
42         
43 %       \midi { \tempo 4:80 }
44 }