]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/ottava.ly
(texidoc): demo 15ma too.
[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.4"
10
11
12 \paper { raggedright = ##t} 
13 \score {
14   \notes\relative c''' \notes {
15   a b c a
16   #(set-octavation 2)
17   a' b
18   c a
19   #(set-octavation 0)
20
21   a, #(set-octavation 1) b
22   #(set-octavation 0)
23   c a 
24 }
25 }
26