]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/staff-tweak.ly
* input/test/slur-shape.ly (x): remove file.
[lilypond.git] / input / regression / staff-tweak.ly
index d16c0c7baeef21d491bb43be9fee5f03a55c2a5d..16fa8a227eff50fa830da871e52d6677f4e70a03 100644 (file)
@@ -2,21 +2,23 @@
 \header {
 texidoc = "The staff is a grob, and may be adjusted as well: this one
  shows a staff with 6 thick line, and a slightly large staffspace.
-Beams remain correctly quantized.
-
-"    
+Beams remain correctly quantized."    
 }
 
-\score { \notes {
-    \property Score.StaffSymbol \set #'thickness = #2.0
-    \property Score.StaffSymbol \set #'line-count = #6
-    \property Score.StaffSymbol \set #'staff-space = #1.1
-    c'4 g'4 b'8  b'8  b'8  b'8  
-}
-        
-\paper  { raggedright = ##t
 
+mus = \notes \relative c' { c4 g' d'8 d d d }
 
-      } 
-     }
+\score {
+  \notes <<
+    \new Staff \mus
+    \new Staff \with { 
+       StaffSymbol \set #'thickness = #2.0
+       StaffSymbol \set #'line-count = #6
+       StaffSymbol \set #'staff-space = #1.1
+    } \mus
+  >>
+  \paper  {
+    raggedright = ##t
+  } 
+}