]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-individual-tuning.ly
1845bfc0d37047f20a204c1e8a67f14f1a998ea7
[lilypond.git] / input / regression / spacing-individual-tuning.ly
1 \header {
2
3 texidoc = "
4
5 You can tune spacing of individual notes
6 by setting @code{space-factor} in @code{NoteSpacing}.
7
8 "
9 }
10
11 \score { \notes {
12 \relative c'' { 
13 c8 c8
14 \property Voice.NoteSpacing \set #'space-factor = #0.7
15  c8 c8
16 \property Voice.NoteSpacing \set #'space-factor = #1.4
17  c8 c8
18 \property Voice.NoteSpacing \set #'space-factor = #1.0
19  c8 c8 
20 } }
21 \paper { linewidth = -1. }
22 }