]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/ottava.ly
* lily/side-position-interface.cc (out_of_staff): also do
[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 The spanner should go below for 8va bassa, and the string can be tuned
8 with @code{Staff.ottavation}.
9
10 "
11
12 }
13 \version "2.1.7"
14
15
16 \paper { raggedright = ##t} 
17 \score {
18   \notes\relative c''' \notes {
19   a b c a
20   #(set-octavation 1)
21   a b c a
22   #(set-octavation 0)
23   #(set-octavation 2)
24   a b c a
25   #(set-octavation 0)
26   #(set-octavation -1)
27   a b c a
28   #(set-octavation 0)
29   a,
30   #(set-octavation 1)
31   \property Staff.ottavation = #"8"
32   b
33   #(set-octavation 0)
34   c a 
35   #(set-octavation -1) b a g 
36   #(set-octavation 0)
37   c
38 }
39 }
40