]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/ottava-edge.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / ottava-edge.ly
1
2 \header
3 {
4   texidoc = 
5   "Both edge heights of an ottava bracket can be specified."
6 }
7 \version "2.11.51"
8
9
10 \layout { ragged-right = ##t} 
11
12 \relative c'''  {
13
14   %standard ottavation
15   #(set-octavation 1)
16   a b c
17   #(set-octavation 0)
18   a
19   
20   %override the left edge height to produce standard text with a left edge
21   #(set-octavation 1)
22   \once \override Staff.OttavaBracket #'edge-height = #'(1.2 . 1.2)
23   a b c
24   #(set-octavation 0)
25   a
26   
27   % Look! we can make them go up!
28   #(set-octavation 1)
29   \once \override Staff.OttavaBracket #'edge-height = #'(-1 . -1)
30   a b c
31   #(set-octavation 0)
32   a
33   
34   % and have them go in different directions
35   #(set-octavation 1)
36   \once \override Staff.OttavaBracket #'edge-height = #'(-1.2 . 1.2)
37   a b c
38   #(set-octavation 0)
39   a
40  
41 }
42
43