]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/volta-multi-staff.ly
resolve merge
[lilypond.git] / input / lsr / volta-multi-staff.ly
diff --git a/input/lsr/volta-multi-staff.ly b/input/lsr/volta-multi-staff.ly
deleted file mode 100644 (file)
index 022b46a..0000000
+++ /dev/null
@@ -1,36 +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 = "repeats, staff-notation"
-
-  texidoc = "
-By adding the @code{Volta_engraver} to the relevant staff, volte can be
-put over staves other than the topmost one in a score.
-
-"
-  doctitle = "Volta multi staff"
-} % begin verbatim
-
-voltaMusic = \relative c'' {
-  \repeat volta 2 {
-    c1
-  }
-  \alternative {
-    d1
-    e
-  }
-}
-
-<<
-  \new StaffGroup <<
-    \new Staff \voltaMusic
-    \new Staff \voltaMusic
-  >>
-  \new StaffGroup <<
-    \new Staff \with { \consists "Volta_engraver" }
-      \voltaMusic
-    \new Staff \voltaMusic
-  >>
->>