release commit
[lilypond.git] / input / test / stem-extend.ly
blob9c303a86e0f9ccf558c06fbd1c109cb073730c8f
1 #(ly:set-option 'old-relative)
2 \version "2.1.7"
4 \header { texidoc = "@cindex Stem Extend
5 You can stop LilyPond from extending stems to the center line. "
8 \score {
9 \context Voice \notes\relative c {
10 \context Staff <<
11 \new Voice {
12 f2 f8 g a b
13 \property Voice.Stem \set #'no-stem-extend = ##t
14 f2 f8 g a b
16 \new Voice {
17 c''2 c8 b a g
18 \property Voice.Stem \set #'no-stem-extend = ##t
19 c2 c8 b a g
24 \paper { raggedright = ##t}