]> git.donarmstrong.com Git - lilypond.git/blob - input/test/stem-extend.ly
Massive changes - see ChangeLog.
[lilypond.git] / input / test / stem-extend.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.0"
3
4 \header { texidoc = "@cindex Stem Extend
5 You can stop LilyPond from extending stems to the center line. "
6 }
7
8 \score { 
9   \context Voice \notes\relative c {
10         \context Staff <
11                 \context Voice = "a" { 
12                         f2 f8 g a b 
13                         \property Voice.Stem \set #'no-stem-extend = ##t
14                         f2 f8 g a b
15                 }
16                 \context Voice = "b" { 
17                         c''2 c8 b a g
18                         \property Voice.Stem \set #'no-stem-extend = ##t
19                         c2 c8 b a g
20                 }
21         >
22         
23   }
24   \paper { raggedright = ##t}  
25 }
26