]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/changing-the-number-of-lines-in-a-staff.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[lilypond.git] / input / lsr / changing-the-number-of-lines-in-a-staff.ly
index ff6fc15ac35d72c9a4335c572c5fa6db6bb7a649..7d60f76df173bd75ed070cd0be8cb570aa3d09b0 100644 (file)
@@ -1,35 +1,39 @@
 %% 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.35"
+\version "2.13.1"
 
 \header {
   lsrtags = "staff-notation"
- texidoc = "
-The number of lines in a staff may changed by overriding
-@code{line-count} in the properties of @code{StaffSymbol}.
 
+  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
 
-" }
-% 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
     }
   >>
-
 }