]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-neutral-direction.ly
*** empty log message ***
[lilypond.git] / input / test / beam-neutral-direction.ly
1
2 \version "2.1.28"
3 \header{
4         texidoc="@cindex Beam Neutral Direction
5 When a beam falls in the middle of the staff, the beams point normally 
6 down.  However, this behaviour can be altered, if desired.
7 " }
8
9 fragment = \notes {
10    b''8[ b]
11   \override Beam  #'neutral-direction = #-1
12    b[ b]
13   \override Beam  #'neutral-direction = #1
14    b[ b]
15 }
16
17 \paper { raggedright = ##t} 
18
19 \score {
20   \notes\relative c \fragment
21   \paper {raggedright = ##t }  
22 }
23