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