]> git.donarmstrong.com Git - lilypond.git/blob - input/test/volta-chord-names.ly
release commit
[lilypond.git] / input / test / volta-chord-names.ly
1 \header {
2     texidoc = "Volta brackets can be placed over chord names. Just set
3 the @code{voltaOnThisStaff} property to true for the @code{ChordNames} context and to false for the topmost ordinary @code{Staff} context."
4 }
5
6 \version "2.8.0"
7 \score { <<
8   \new ChordNames \with {
9     voltaOnThisStaff = ##t
10   } \chordmode {
11     c1 c
12   }
13   \new Staff \with {
14     voltaOnThisStaff = ##f
15   }
16   {
17     \repeat volta 2 { c'1 } \alternative { c' }
18   }
19 >> }