]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/collision-merge-differently-dotted.ly
Issue 1388: Initial work to support opentype font features.
[lilypond.git] / input / regression / collision-merge-differently-dotted.ly
index 17704c5fbbf248e323a8f76d78dc2b2a140f3c35..e2c0da08b3c1586865623436beec6c7f50da7476 100644 (file)
@@ -1,21 +1,29 @@
-\version "1.9.2"
+\version "2.19.21"
 \header {
+    
+    texidoc = "If @code{NoteCollision} has
+ @code{merge-differently-dotted = ##t} note
+heads that have differing dot counts may be merged anyway.  Dots
+should not disappear when merging similar note heads."
+    
+}
 
-texidoc = "If NoteCollision has merge-differently-dotted set, note
-heads that have differing dot counts may be merged anyway."
-
- }
-    \paper { raggedright= ##t }
-
-
+\layout { ragged-right= ##t }
        
-\score { \notes {
-  \context Staff <
-  \new Voice { \voiceOne g'8 g'8 
-     \property Staff.NoteCollision \override #'merge-differently-dotted = ##t
-     g'8 g'8
-     }
-  \new Voice { \voiceTwo  g'8.[ f16]  g'8.[ f'16] } 
-  >
-}}
+\context Staff \relative <<
+  {
+    g'8[ g8]
+    \override Staff.NoteCollision.merge-differently-dotted = ##t
+    g8[ g8]
+    g4. r8 g8. g16
+    g8 g4 r8 g4
+  }
+  \\
+  {
+    g8.[ f16]
+    g8.[ f16]
+    g8 g4 r8 g4
+    g4. r8 g8. g16
+  }
+>>