]> git.donarmstrong.com Git - lilypond.git/blob - input/new/volta-below-chords.ly
Update ROADMAP
[lilypond.git] / input / new / volta-below-chords.ly
1 \version "2.11.36"
2 \layout { ragged-right= ##t }
3 \header {
4   lsrtags = "repeats,staff-notation,chords"
5   texidoc = "By adding the @code{Volta_engraver} to the relevant
6 staff, volte can be put under chords."
7   doctitle = "Volta under chords"
8 }
9
10 % chords above volta
11 \score {
12   <<
13     \chords {
14       c1
15        c
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 }
29