From 7c5bd731c075526f7b65286b89bdee0add896103 Mon Sep 17 00:00:00 2001 From: Patrick McCarty Date: Mon, 16 Jun 2008 14:46:36 -0700 Subject: [PATCH] New snippet for input/new Signed-off-by: Patrick McCarty --- ...sing-warnings-for-clashing-note-columns.ly | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 input/new/suppressing-warnings-for-clashing-note-columns.ly diff --git a/input/new/suppressing-warnings-for-clashing-note-columns.ly b/input/new/suppressing-warnings-for-clashing-note-columns.ly new file mode 100644 index 0000000000..ed3b97f1c9 --- /dev/null +++ b/input/new/suppressing-warnings-for-clashing-note-columns.ly @@ -0,0 +1,21 @@ +\version "2.11.49" +\header { + lsrtags = "simultaneous-notes,tweaks-and-overrides" + texidoc = " +If notes from two voices with stems in the same direction are +placed at the same position, and both voices have no shift or the +same shift specified, the error message \"warning: ignoring too +many clashing note columns\" will appear when compiling the +LilyPond file. This message can be suppressed by setting the +@code{'ignore-collision} property of the @code{NoteColumn} object +to @code{#t}. +" + doctitle = "Suppressing warnings for clashing note columns" +} + +ignore = \once \override NoteColumn #'ignore-collision = ##t + +\relative c' << + { \oneVoice \stemDown f2\glissando \stemNeutral a } \\ + { \oneVoice \ignore c2\glissando \ignore d, } +>> -- 2.39.5