]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/new/volta-below-chords.ly
Remove snippets moved to LSR.
[lilypond.git] / input / new / volta-below-chords.ly
diff --git a/input/new/volta-below-chords.ly b/input/new/volta-below-chords.ly
deleted file mode 100644 (file)
index 1b054a7..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-\version "2.12.0"
-\header {
-  lsrtags = "repeats,staff-notation,chords"
-  texidoc = "By adding the @code{Volta_engraver} to the relevant
-staff, volte can be put under chords."
-  doctitle = "Volta under chords"
-}
-
-\score {
-  <<
-    \chords {
-      c1
-      c1
-    }
-    \new Staff \with {
-      \consists "Volta_engraver"
-    }
-    {
-      \repeat volta 2 { c'1 }
-      \alternative { c' }
-    }
-  >>
-  \layout {
-    \context {
-      \Score
-      \remove "Volta_engraver"
-    }
-  }
-}