]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-stem-bar.ly
Imported sources
[lilypond.git] / input / regression / spacing-stem-bar.ly
1
2 \version "2.1.7"
3 \header {
4
5 texidoc = "Upstem notes before a barline are printed with some extra
6 space. This is an optical correction similar to juxtaposed stems.
7 "
8
9 }
10
11 sd = \property Voice.Stem \set #'direction = #-1
12 su = \property Voice.Stem \set #'direction = #1
13 \score { \notes\relative e'
14 {
15
16 %\property Staff.StaffSpacing \override #'stem-spacing-correction = #0.5
17 %\property Staff.NoteSpacing \override #'stem-spacing-correction = #0.5
18
19 \time 3/8
20 \su
21 e8 e e
22 f f f
23 a a a
24 c c c
25 e e e
26 }
27 \paper { raggedright = ##t}
28 }
29