]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-bar-stem.ly
release commit
[lilypond.git] / input / regression / spacing-bar-stem.ly
1
2 \version "2.1.30"
3 \header {
4 texidoc = "Downstem notes following a barline are
5 printed with some extra space. This is an optical correction similar
6 to juxtaposed stems.
7
8 Accidentals after the barline get some space as well.
9 "
10 }
11
12 sd = \override Stem  #'direction = #-1
13 su = \override Stem  #'direction = #1
14 \score { \notes\relative c''
15 {
16
17 %\override Staff.StaffSpacing  #'stem-spacing-correction = #10
18 %\override Staff.NoteSpacing  #'stem-spacing-correction = #10
19
20 \time 1/4 \sd c4 \su c4
21 \sd c4 \su c4
22 \sd f c,4  c'4 cis4 \stemUp c4
23 }
24 \paper { raggedright = ##t}
25 }
26