]> git.donarmstrong.com Git - lilypond.git/blob - input/new/volta-below-chords.ly
Merge master into nested-bookparts
[lilypond.git] / input / new / volta-below-chords.ly
1 \version "2.11.61"
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 {
16       \consists "Volta_engraver"
17     }
18     {
19       \repeat volta 2 { c'1 }
20       \alternative { c' }
21     }
22   >>
23   \layout {
24     \context {
25       \Score
26       \remove "Volta_engraver"
27     }
28   }
29 }