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