]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/collisions.ly
*** empty log message ***
[lilypond.git] / input / regression / collisions.ly
1 \version "1.7.16"
2 \header{
3 texidoc="
4 Normal collisions. We have support for polyphony, where the
5 middle voices are horizontally shifted.
6 "
7 filename =       "collisions.ly"
8 description =    "random counterpoint to test collisions"
9 enteredby =      "HWN,JCN"
10 copyright =      "public domain"
11 Tested =         "test the Collision resolution "
12 }
13
14
15 twovoice =
16 \notes \relative c' \context Staff \notes < 
17         \context Voice=i { \stemDown c4 c  d d e e f f }
18         \context Voice=ii { \stemUp g4 f f e e d d c } 
19 >
20
21 twovoicechords = \context Staff \notes <
22         \context Voice = i \relative c' {
23                 \stemUp e4 d c b a g f
24         }
25         \context Voice = ii \relative c' {
26                 \stemDown <<a c>>4 <<a c>>4 <<a c>>4 <<a c>>4 <<a c>>
27                 <<a c>> <<a c>>  
28         }
29 >
30
31
32 threevoice =  \context Staff \notes <
33          { g4 f e f g a g2 } \\
34          {  c4 d e d c d es } \\
35          { e4 e e e e e e e  }
36 >
37
38 hairyChord =  \context Staff \notes \relative c''
39     < e \\
40       fis, \\
41       cis' \\
42       \\
43       ais
44       >
45
46
47 \score{
48         \notes { \transpose c c' {
49            \twovoice
50            \twovoicechords
51            \threevoice   }
52          \hairyChord
53         }
54         
55 %       \midi { \tempo 4:80 }
56 }
57 %% new-chords-done %%