]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/volta-multi-staff.ly
Merge branch 'lilypond/translation' of ssh://trettig@git.sv.gnu.org/srv/git/lilypond...
[lilypond.git] / input / lsr / volta-multi-staff.ly
index c1ca05f2792b7aaeaed714b50d9e897919a20e4d..25f9ec87bfb027355cfa31980ac30ce255af12bb 100644 (file)
@@ -1,24 +1,32 @@
-%% Do not edit this file; it is auto-generated from LSR!
-%% Tags: pitches, repeats
+%% Do not edit this file; it is auto-generated from input/new
+%% This file is in the public domain.
+\version "2.11.49"
 \header {
-  texidoc = "By adding @code{Volta_engraver}, repeat brackets
-  can be put over staves other than the topmost one in a score."
-}
-% begin verbatim
-\version "2.11.36"
+  lsrtags = "repeats,staff-notation,fretted-strings"
+  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
 
-vmus =  {
-  \repeat volta 2 c1 \alternative { d e } 
-} 
+voltaMusic = \relative c'' {
+  \repeat volta 2 {
+    c1
+  }
+  \alternative {
+    d1
+    e
+  }
+}
 
-\relative c'' <<
+<<
   \new StaffGroup <<
-    \context Staff \vmus
-    \new Staff \vmus
+    \context Staff \voltaMusic
+    \new Staff \voltaMusic
   >>
   \new StaffGroup <<
-    \new Staff \with { \consists Volta_engraver }
-      \vmus
-    \new Staff \vmus
+    \new Staff \with { \consists "Volta_engraver" }
+      \voltaMusic
+    \new Staff \voltaMusic
   >>
 >>