]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/staff-lines.ly
*** empty log message ***
[lilypond.git] / input / test / staff-lines.ly
index 6418038c0ca0d80c1acb83f431f941ccca3b8071..edb516b6962cac7049a5f18e9491a3b86d8eddac 100644 (file)
@@ -1,8 +1,13 @@
 
-\version "1.9.8"
+\version "2.2.0"
 
-\header { texidoc="@cindex Staff Lines
-Set staff symbol property. "
+\header {
+
+    texidoc="@cindex Staff Lines 
+The number of lines in a staff may changed by overriding @code{line-count}
+in the properties of @code{StaffSymbol}.
+"
+         
 }
 
 
@@ -19,10 +24,11 @@ lower = \notes\relative c {
     \new Staff <<
       \upper
     >>  
-    \new Staff \with { StaffSymbol \set #'line-count = #4 } <<
-      \clef bass
-      \lower
-    >>  
+    \new Staff  {
+       \override Staff.StaffSymbol  #'line-count = #4 
+        \clef bass
+        \lower
+    }
   >>
   \paper { raggedright=##t}  
 }