]> git.donarmstrong.com Git - lilypond.git/blob - input/new/volta-below-chords.ly
8c4ad9d2a800c4672cf9be32bb022ddb89a74dbd
[lilypond.git] / input / new / volta-below-chords.ly
1 \version "2.11.47"
2 \header {
3   lsrtags = "repeats,staff-notation,chords"
4   texidoc = "By adding the @code{Volta_engraver} to the relevant
5 staff, volte can be put under chords."
6   doctitle = "Volta under chords"
7 }
8
9 \score {
10   <<
11     \chords {
12       c1
13       c1
14     }
15     \new Staff \with { \consists "Volta_engraver" } {
16       \repeat volta 2 { c'1 }
17       \alternative { c' }
18     }
19   >>
20   \layout {
21     \context {
22       \Score
23       \remove "Volta_engraver"
24     }
25   }
26 }