]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/relative-repeat.ly
Merge branch 'stable/2.16' into staging
[lilypond.git] / input / regression / relative-repeat.ly
1 \header {
2   texidoc = "Using repeat unfold within a relative block gives a
3 different result from writing the notes out in full.  The first
4 system has all the notes within the stave.  In the second, the
5 notes get progressively higher."
6   }
7 \version "2.16.0"
8
9 \relative c' {
10   c'1^"Using unfold"
11   \repeat unfold 3 { f,2^"Repeated" bes2 }
12   \alternative { { a2_"Alt1" c } { e_"Alt2" c } { b_"Alt3" d } }
13 }
14
15 \relative c' {
16   c'1^"The same notes, written out"
17   f,2 bes2 a2 c f2 bes2 e c f2 bes2 b d
18 }