]> git.donarmstrong.com Git - lilypond.git/blob - input/test/unfold-all-repeats.ly
update syntax in .ly files.
[lilypond.git] / input / test / unfold-all-repeats.ly
1 \version "1.7.6"
2
3 \header { 
4 texidoc = "The standard function unfold-repeats will recursively unfold
5 all repeats for correct MIDI output. Thanks to Rune Zedeler."
6 }
7
8
9 mel = \notes \context Staff {
10   \repeat tremolo 8 {c'32 e' }
11   \repeat percent 2 { c''8 d'' }
12   \repeat volta 2 {c'4 d' e' f'} 
13   \alternative {
14     { g' a' a' g' }
15     {f' e' d' c' }
16   }
17   \bar "|."
18 }
19
20 \score { \notes {
21   \mel \break
22 %%  \apply #unfold-repeats \mel  FIXME
23  }
24 }
25
26
27 %% new-chords-done %%