]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/system-extents.ly
release commit
[lilypond.git] / input / regression / system-extents.ly
index 2b879ad88e76d778f446fe54931c4e5a51d795c7..d58aa4bcd09a298ab751943365531b10c3276107 100644 (file)
@@ -1,23 +1,24 @@
-\version "2.1.23"
+\version "2.8.0"
 \header {
 
-    texidoc = "LilyPond correctly determines the size of every
-    system. This includes postscript constructs such as slurs."
+    texidoc = "The size of every system is correctly determined; this 
+    includes postscript constructs such as slurs."
 
     }
          
-\score { \notes
-\context Voice
-{ \unset Staff.minimumVerticalExtent 
-    \slurDown c4 ( g4  c''4)
 
+\layout { 
+    \context {
+       \Score
+       \override System  #'stencil = #box-grob-stencil
+    }
 }
 
-    \paper { 
-        \translator {
-            \ScoreContext
-            \override System #'print-function = #box-grob-stencil
-            }
-    }
+\new Voice
+{
+    \unset Staff.minimumVerticalExtent
+    \override Score.RehearsalMark #'font-size = #20
+    
+    \slurDown c4 ( g4  c''4)
 }