]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/ottava.ly
* lily/beam-engraver.cc: move new-beam-event to beam-event
[lilypond.git] / input / regression / ottava.ly
1
2 \header
3 {
4 texidoc = "Ottava brackets are supported, through the
5 use of the scheme function @code{set-octavation}. 
6 "
7
8 }
9 \version "1.9.1"
10
11
12 \paper { raggedright = ##t} 
13 \score {
14   \notes\relative c''' \notes {
15   a b c a
16   #(set-octavation 1)
17   a b c a
18   #(set-octavation 0)
19
20   a #(set-octavation 1) b
21   #(set-octavation 0)
22   c a 
23 }
24 }
25