]> git.donarmstrong.com Git - lilypond.git/blob - input/test/no-stem-extend.ly
Added texinfo index.
[lilypond.git] / input / test / no-stem-extend.ly
1 \version "1.7.18"
2
3 \header { texidoc = "@cindex No Stem Extend
4 You can stop Lilypond from extending stems to the center line. "
5 }
6
7 \score { 
8   \context Voice \notes\relative c {
9         \context Staff <
10                 \context Voice = "a" { 
11                         f2 f8 g a b 
12                         \property Voice.Stem \set #'no-stem-extend = ##t
13                         f2 f8 g a b
14                 }
15                 \context Voice = "b" { 
16                         c''2 c8 b a g
17                         \property Voice.Stem \set #'no-stem-extend = ##t
18                         c2 c8 b a g
19                 }
20         >
21         
22   }
23   \paper { raggedright = ##t}  
24 }
25 %% new-chords-done %%