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