]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/arpeggio-collision.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / regression / arpeggio-collision.ly
index 8e335b282a5879a5b42187439549de99fd5e954e..ba82ac1293d40f034d71303d316feea39d798edd 100644 (file)
@@ -1,52 +1,20 @@
-#(ly:set-option 'old-relative)
-\version "1.9.4"
+\version "2.12.0"
 
 \header  {
-texidoc = "Arpeggio stays clear of accidentals and flipped note heads.
-Since Arpeggio engraver is Voice, it does nothing for voice collisions."
+texidoc = "Arpeggio stays clear of accidentals and flipped note heads."
+}
+\layout {
+  ragged-right = ##t
+  \context{
+    \Staff
+    connectArpeggios = ##t
+  }
 }
 
-hairyChord = \context Staff \notes\relative c' <<
-    \new Voice {
-        \property Voice.Stem \override #'direction = #1
-        \property Voice.NoteColumn \override #'horizontal-shift = #0
-        e4\arpeggio
-    }
-    
-    \new Voice {
-        \property Voice.Stem \override #'direction = #1
-        \property Voice.NoteColumn \override #'horizontal-shift = #1
-        cis\arpeggio
-        }
-    
-    \new Voice {
-       \property Voice.Stem \override #'direction = #1
-       \property Voice.NoteColumn \override #'horizontal-shift = #2
-       ais\arpeggio
-       }
-    
-    \new Voice {
-       \property Voice.Stem \override #'direction = #-1
-       \property Voice.NoteColumn \override #'horizontal-shift = #-1
-       fis\arpeggio
-       }
->>
 
 
-\score{
-    \notes \transpose c c' {
-       < fis'' g  d a >\arpeggio
-       < fis, g  d a >\arpeggio
-       < fis'' g  d a >\arpeggio
-        \hairyChord
-       }
-    \paper {
-        raggedright = ##t
-       \translator{
-           \StaffContext
-           connectArpeggios = ##t
-       }
-       }
+\transpose c c' {
+  <fis'' g d a>\arpeggio
+  <fis, g d a>\arpeggio
+  <fis'' g d a>\arpeggio
 }
-
-