]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/volta-below-chords.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / lsr / volta-below-chords.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 \version "2.11.51"
4 \header {
5   lsrtags = "repeats,staff-notation,chords"
6   texidoc = "By adding the @code{Volta_engraver} to the relevant
7 staff, volte can be put under chords."
8   doctitle = "Volta under chords"
9 } % begin verbatim
10
11 \score {
12   <<
13     \chords {
14       c1
15       c1
16     }
17     \new Staff \with { \consists "Volta_engraver" } {
18       \repeat volta 2 { c'1 }
19       \alternative { c' }
20     }
21   >>
22   \layout {
23     \context {
24       \Score
25       \remove "Volta_engraver"
26     }
27   }
28 }