]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/vertical-extent.ly
Merge branch 'origin' of /home/lilydev/vc/gub/downloads/lilypond into master-hanwen
[lilypond.git] / input / test / vertical-extent.ly
index 21d989a969d2285e54d9bd848fc8e577b65356df..a56738e0fa4cab4f30079dbc187fcdb863d5529d 100644 (file)
@@ -1,27 +1,27 @@
-\version "2.1.26"
+\version "2.7.39"
 % TODO: huh?  what's this file about?  -gp
 
 \header { texidoc = "
-Vertical extents may increased by setting @code{minimumVerticalExtent}, 
+Vertical extents may increased by setting @code{\override VerticalAxisGroup #'minimum-Y-extent}, 
 @code{extraVerticalExtent}, and @code{verticalExtent}. In this example,
 @code{verticalExtent} is increased.
 " }
 
 \score {
-  \notes  <<
+    <<
     \new Staff {
-      \set Staff.verticalExtent = #'(-15.0 . 0.0)
+      \set Staff.VerticalAxisGroup = #'(-15.0 . 0.0)
       \clef alto
       c1
     }
     \new Staff {
-      \set Staff.verticalExtent = #'(-0.0 . 15.0)
+      \set Staff.VerticalAxisGroup = #'(-0.0 . 15.0)
       \clef alto
       g1
     }
   >>
-  \paper{
-      raggedright = ##t
+  \layout{
+      ragged-right = ##t
   }
 }