]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-neutral-direction.ly
more comments in files.
[lilypond.git] / input / test / beam-neutral-direction.ly
1 \version "1.7.18"
2 \header{
3         texidoc="@cindex Beam Neutral Direction
4 When a beam falls in the middle of the staff, Lilypond normally
5 prints the beam pointing down.  However, this behaviour can be
6 altered if desired.
7 " }
8
9 fragment = \notes {
10    b''8-[ b]
11   \property Voice.Beam \set #'neutral-direction = #-1
12    b-[ b]
13   \property Voice.Beam \set #'neutral-direction = #1
14    b-[ b]
15 }
16
17 \paper { raggedright = ##t} 
18
19 \score {
20   \notes\relative c \fragment
21   \paper { }  
22 }
23 %% new-chords-done %%