]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/new/volta-multi-staff.ly
Remove snippets moved to LSR.
[lilypond.git] / input / new / volta-multi-staff.ly
diff --git a/input/new/volta-multi-staff.ly b/input/new/volta-multi-staff.ly
deleted file mode 100644 (file)
index a45ddde..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-\version "2.12.0"
-\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"
-}
-
-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
-  >>
->>