]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/spacing/proportional-strict-notespacing.ly
95bee319e5aea430e551ddbd98b092a9e3f42fc8
[lilypond.git] / input / lsr / spacing / proportional-strict-notespacing.ly
1 \version "2.10.12"
2
3 \header { texidoc = "
4 If @code{strict-note-spacing} is set spacing of notes is not influenced
5 by bars or clefs part way along the system. Rather, they are put just
6 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 >>