]> git.donarmstrong.com Git - lilypond.git/blob - input/test/stem-extend.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / test / stem-extend.ly
1 \version "2.1.26"
2
3 \header { texidoc = "@cindex 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                 \new Voice { 
11                         f2 f8 g a b 
12                         \override Stem  #'no-stem-extend = ##t
13                         f2 f8 g a b
14                 }
15                 \new Voice { 
16                         c''2 c8 b a g
17                         \override Stem  #'no-stem-extend = ##t
18                         c2 c8 b a g
19                 }
20         >>
21         
22   }
23   \paper { raggedright = ##t}  
24 }
25