]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/suppressing-warnings-for-clashing-note-columns.ly
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / Documentation / snippets / suppressing-warnings-for-clashing-note-columns.ly
index 726b2978d3be7bd57c6948c9d035b152036b45f4..40b6b8678f560bc3a3322a19f61459d63e017bbd 100644 (file)
@@ -27,10 +27,8 @@ used with care.
 ignore = \override NoteColumn.ignore-collision = ##t
 
 \relative c' {
-  <<
-    \ignore
-    { \stemDown f2 g }
-    \\
-    { c2 c, }
+  \new Staff <<
+    \new Voice{ \ignore \stemDown f2 g }
+    \new Voice{ c2 \stemDown c, }
   >>
 }