]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/collisions.ly
* input/regression/markup-syntax.ly: remove \score.
[lilypond.git] / input / regression / collisions.ly
index 0c4cb7a121b6826e72dea4b616ff66028becf23c..156dabd951a45c61f4aabd356f328adcb77ef3b0 100644 (file)
@@ -1,50 +1,46 @@
-#(ly:set-option 'old-relative)
-\version "1.9.0"
+\version "2.4.0"
 \header{
 texidoc="
-Normal collisions. We have support for polyphony, where the
-middle voices are horizontally shifted.
+In addition to normal collision rules, there is support for polyphony, 
+where the collosion are avoided by shifting middle voices horizontally.
 "
-filename =      "collisions.ly"
-enteredby =     "HWN,JCN"
-copyright =     "public domain"
 }
 
 
 twovoice =
-\notes \relative c' \context Staff \notes < 
-       \context Voice=i { \stemDown c4 c  d d e e f f }
-       \context Voice=ii { \stemUp g4 f f e e d d c } 
->
-
-twovoicechords = \context Staff \notes <
-       \context Voice = i \relative c' {
-               \stemUp e4 d c b a g f
+ \relative c' \context Staff  << 
+        {  g4 f f e e d d c } 
+\\ {  c4 c  d d e e f f }
+>>
+
+twovoicechords = \context Staff  <<
+ \relative c' {
+ e4 d c b a g f
+       }\\
+ \relative c' {
+        <a c>4 <a c>4 <a c>4 <a c>4 <a c>
+               <a c> <a c>  
        }
-       \context Voice = ii \relative c' {
-               \stemDown <<a c>>4 <<a c>>4 <<a c>>4 <<a c>>4 <<a c>>
-               <<a c>> <<a c>>  
-       }
->
+>>
 
 
-threevoice =  \context Staff \notes <
+threevoice = \context Staff  <<
         { g4 f e f g a g2 } \\
         {  c4 d e d c d es } \\
         { e4 e e e e e e e  }
->
+>>
 
-hairyChord =  \context Staff \notes \relative c''
-    < e \\
+hairyChord = \context Staff  \relative c''
+    << e \\
       fis, \\
       cis' \\
       \\
       ais
-      >
+      >>
 
 
 \score{
-       \notes { \transpose c c' {
+        { \transpose c c' {
           \twovoice
           \twovoicechords
           \threevoice   }