]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/chords/volta-brackets-over-chord-names.ly
LSR: add new files.
[lilypond.git] / input / lsr / chords / volta-brackets-over-chord-names.ly
1 %%  Do not edit this file; it is auto-generated from LSR!
2 \version "2.11.23"
3
4 \header { texidoc = "
5 Volta brackets can be placed over chord names. Just set the
6 voltaOnThisStaff property to \"true\" for the ChordNames context and to
7 \"false\" for the topmost ordinary Staff context.
8 " }
9
10 \score { <<
11   \new ChordNames \with {
12     voltaOnThisStaff = ##t
13   } \chordmode {
14     c1 c
15   }
16   \new Staff \with {
17     voltaOnThisStaff = ##f
18   }
19   {
20     \repeat volta 2 { c'1 } \alternative { c' }
21   }
22 >> }