]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/volta-multi-staff.ly
Fix "make top-doc" (and thus "make dist") on clean build tree
[lilypond.git] / Documentation / snippets / volta-multi-staff.ly
index c674950a3088f41b02e6e10013bc441b4aa69361..25fd1549ffbbb0eaba713db08fc3e6a19e725c80 100644 (file)
@@ -1,10 +1,13 @@
-%% Do not edit this file; it is automatically
+%% DO NOT EDIT this file manually; it is automatically
 %% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.4"
+\version "2.14.2"
 
 \header {
-  lsrtags = "repeats, staff-notation"
+  lsrtags = "really-simple, repeats, staff-notation"
 
   texidoc = "
 By adding the @code{Volta_engraver} to the relevant staff, volte can be
@@ -14,13 +17,14 @@ 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
+    e1
   }
 }