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