]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/changing-the-number-of-lines-in-a-staff.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / lsr / changing-the-number-of-lines-in-a-staff.ly
diff --git a/input/lsr/changing-the-number-of-lines-in-a-staff.ly b/input/lsr/changing-the-number-of-lines-in-a-staff.ly
deleted file mode 100644 (file)
index 9cf3659..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-%% 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.12.3"
-
-\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'' {
-  c4 d e f
-}
-
-lower = \relative c {
-  \clef bass
-  c4 b a g
-}
-
-\score {
-  \context PianoStaff <<
-    \new Staff {
-      \upper
-    }
-    \new Staff {
-      \override Staff.StaffSymbol #'line-count = #4 
-      \lower
-    }
-  >>
-}
-