]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-strict-notespacing.ly
* lily/spacing-determine-loose-columns.cc: new file.
[lilypond.git] / input / regression / spacing-strict-notespacing.ly
1 \header {
2
3
4   texidoc = "If @code{strict-note-spacing} is set, then spacing of
5 notes is not influenced by bars and clefs half-way on the system.
6 Rather, they are put just before the note that occurs at the same
7 time.  This may cause collisions.  "
8
9 }
10
11
12 \version "2.7.4"
13
14 \paper {
15   raggedright = ##t
16   indent = 0
17 }
18 \layout {
19   \context {
20     \Score
21   }
22 }
23
24 \relative c''
25 <<
26   \override Score.SpacingSpanner #'strict-note-spacing = ##t 
27   \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
28   \new Staff { c8[ c \clef alto c c c c]  c4 c2 r2 }
29   \new Staff { c2  \times 2/3 { c8 \clef bass cis,, c } c4 c1 }
30 >>
31