]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/changing-the-number-of-lines-in-a-staff.ly
Merge branch 'master' into nested-bookparts
[lilypond.git] / input / lsr / changing-the-number-of-lines-in-a-staff.ly
index 7b973ad37843cf547ce70fc59e99dee7494452c5..a2a04196b1a46ed28823bc6a5609317e329a26d5 100644 (file)
@@ -1,33 +1,38 @@
-%% Do not edit this file; it is auto-generated from LSR!
-%% Tags: staff-notation
-\version "2.11.35"
+%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% This file is in the public domain.
+\version "2.11.62"
 
-\header { texidoc = "
-The number of lines in a staff may changed by overriding
-@code{line-count} in the properties of @code{StaffSymbol}.
+\header {
+  lsrtags = "staff-notation"
 
+  texidoc = "
+The number of lines in a staff may changed by overriding the
+@code{StaffSymbol} property @code{line-count}.
 
-" }
+
+
+
+"
+  doctitle = "Changing the number of lines in a staff"
+} % begin verbatim
 
 upper = \relative c'' {
-  c1 d e f
+  c4 d e f
 }
 
 lower = \relative c {
-  c1 b a g
+  \clef bass
+  c4 b a g
 }
 
 \score {
   \context PianoStaff <<
-    \new Staff <<
+    \new Staff {
       \upper
-    >>  
-    \new Staff  {
-       \override Staff.StaffSymbol  #'line-count = #4 
-        \clef bass
-        \lower
+    }
+    \new Staff {
+      \override Staff.StaffSymbol #'line-count = #4 
+      \lower
     }
   >>
-
 }
-