]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/suppressing-warnings-for-clashing-note-columns.ly
3d114acd627b8b44f982c1b9ed35f73c292ffed2
[lilypond.git] / input / lsr / suppressing-warnings-for-clashing-note-columns.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "simultaneous-notes, tweaks-and-overrides"
7
8   texidoc = "
9 If notes from two voices with stems in the same direction are placed at
10 the same position, and both voices have no shift or the same shift
11 specified, the error message \"warning: ignoring too many clashing note
12 columns\" will appear when compiling the LilyPond file.  This message
13 can be suppressed by setting the @code{'ignore-collision} property of
14 the @code{NoteColumn} object to @code{#t}.
15
16 "
17   doctitle = "Suppressing warnings for clashing note columns"
18 } % begin verbatim
19
20 ignore = \override NoteColumn #'ignore-collision = ##t
21
22 \relative c' {
23   <<
24     \ignore
25     { \stemDown f2 g }
26     \\
27     { c2 c, }
28   >>
29 }