From: Patrick McCarty Date: Mon, 16 Jun 2008 21:46:36 +0000 (-0700) Subject: New snippet for input/new X-Git-Tag: release/2.11.50-1~54 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7c5bd731c075526f7b65286b89bdee0add896103;p=lilypond.git New snippet for input/new Signed-off-by: Patrick McCarty --- 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, } +>>