]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chord-changes-alternative.ly
Merge remote-tracking branch 'origin/translation'
[lilypond.git] / input / regression / chord-changes-alternative.ly
1 \version "2.18.0"
2
3 \header {
4   texidoc = "Chord change detection in repeat alternatives
5 happens in relation to the chord active at the beginning of the
6 first alternative.
7 "
8 }
9
10 \score {
11   <<
12     \new ChordNames {
13       \set chordChanges = ##t
14       \chordmode { \repeat volta 3 { g1 | }
15                    \alternative { {c |}  {c4 g c c |} {g2 c |} } } }
16     \new Voice {
17       \relative c'' {
18         \repeat volta 3 { g4 f e d | } 
19         \alternative { {c r r r |} {c g c r |} {b g c2 |} } }
20       \bar "|." }
21   >>
22 }