]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/suppressing-warnings-for-clashing-note-columns.ly
Doc: CSS: A better brown for the usage manual
[lilypond.git] / Documentation / snippets / suppressing-warnings-for-clashing-note-columns.ly
index e270b60888dbdf69021faff62a6c7c40a59b5a03..40b6b8678f560bc3a3322a19f61459d63e017bbd 100644 (file)
@@ -24,14 +24,11 @@ used with care.
   doctitle = "Suppressing warnings for clashing note columns"
 } % begin verbatim
 
-
 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, }
   >>
 }