]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/ottava-edge.ly
Doc: CSS: Add a maximum width for the sidebar in the manuals
[lilypond.git] / input / regression / ottava-edge.ly
index 314d5f966cdc9c1b8aa713710d034260cbd2561d..667e0c01db6bb2e43c66871921b929f1166de0cb 100644 (file)
@@ -4,7 +4,8 @@
   texidoc = 
   "Both edge heights of an ottava bracket can be specified."
 }
-\version "2.11.45"
+
+\version "2.17.6"
 
 
 \layout { ragged-right = ##t} 
 \relative c'''  {
 
   %standard ottavation
-  #(set-octavation 1)
+  \ottava #1
   a b c
-  #(set-octavation 0)
+  \ottava #0
   a
   
   %override the left edge height to produce standard text with a left edge
-  #(set-octavation 1)
-  \once \override Staff.OttavaBracket #'edge-height = #'(1.2 . 1.2)
+  \ottava #1
+  \once \override Staff.OttavaBracket.edge-height = #'(1.2 . 1.2)
   a b c
-  #(set-octavation 0)
+  \ottava #0
   a
   
   % Look! we can make them go up!
-  #(set-octavation 1)
-  \once \override Staff.OttavaBracket #'edge-height = #'(-1 . -1)
+  \ottava #1
+  \once \override Staff.OttavaBracket.edge-height = #'(-1 . -1)
   a b c
-  #(set-octavation 0)
+  \ottava #0
   a
   
   % and have them go in different directions
-  #(set-octavation 1)
-  \once \override Staff.OttavaBracket #'edge-height = #'(-1.2 . 1.2)
+  \ottava #1
+  \once \override Staff.OttavaBracket.edge-height = #'(-1.2 . 1.2)
   a b c
-  #(set-octavation 0)
+  \ottava #0
   a
  
 }