]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-bar-stem.ly
Imported sources
[lilypond.git] / input / regression / spacing-bar-stem.ly
1
2 \version "2.1.7"
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 = \property Voice.Stem \set #'direction = #-1
13 su = \property Voice.Stem \set #'direction = #1
14 \score { \notes\relative c''
15 {
16
17 %\property Staff.StaffSpacing \override #'stem-spacing-correction = #10
18 %\property Staff.NoteSpacing \override #'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