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