]> git.donarmstrong.com Git - lilypond.git/blob - input/test/unfold-all-repeats.ly
20826832e2b8b12501afe63dfa4d5df9fa83c524
[lilypond.git] / input / test / unfold-all-repeats.ly
1 \version "2.1.26"
2 % regression.  -gp
3
4 \header { 
5 texidoc = "Applying the standard function @code{unfold-repeats} unfolds 
6 recursively all repeats for a correct MIDI output."
7 }
8
9
10 mel = \notes \context Staff {
11   \repeat tremolo 8 {c'32 e' }
12   \repeat percent 2 { c''8 d'' }
13   \repeat volta 2 {c'4 d' e' f'} 
14   \alternative {
15     { g' a' a' g' }
16     {f' e' d' c' }
17   }
18   \bar "|."
19 }
20
21 \score { \notes {
22   \mel \break
23   \apply #unfold-repeats \mel 
24  }
25 }
26
27
28