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