]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/vertical-extent.ly
(texidoc): cleanup.
[lilypond.git] / input / test / vertical-extent.ly
index d961cbfdf34c9d6302d3c0b8e8c6235e9b3c2f90..42e8a888b1a0f5483aaf010ed6a9ffb8e587b76a 100644 (file)
@@ -1,22 +1,27 @@
+\version "2.3.17"
+% TODO: huh?  what's this file about?  -gp
 
+\header { texidoc = "
+Vertical extents may increased by setting @code{minimumVerticalExtent}, 
+@code{extraVerticalExtent}, and @code{verticalExtent}. In this example,
+@code{verticalExtent} is increased.
+" }
 
 \score {
-  \notes  <
-    \context Staff = upper {
-      \property Staff.StaffVerticalExtent = #'(-15.0 . 0.0)
-      \clef alto;
-      c1 \break c1 
+    <<
+    \new Staff {
+      \set Staff.verticalExtent = #'(-15.0 . 0.0)
+      \clef alto
+      c1
     }
-    \context Staff = lower {
-      \property Staff.StaffVerticalExtent = #'(-0.0 . 15.0)
-      \clef alto;
-      g1 \break g1 
+    \new Staff {
+      \set Staff.verticalExtent = #'(-0.0 . 15.0)
+      \clef alto
+      g1
     }
-  >
+  >>
   \paper{
-    interscoreline = 13.0\mm;
-    interscorelinefill = 0;
-    \translator{\ScoreContext \remove "Bar_number_engraver";}
-    \translator{\StaffContext StaffMinimumVerticalExtent = #'(-2.0 . 2.0)}
+      raggedright = ##t
   }
 }
+