]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/repeat-unfold-all.ly
(conv): dashes rule.
[lilypond.git] / input / regression / repeat-unfold-all.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.1"
3
4 \header {
5     texidoc = "Repeats may be unfolded through the Scheme function @code{unfold-repeats}."
6 }
7
8 nots = \notes\relative c'   {
9     c4 \repeat volta 2 c4 \alternative { d e  }
10     \repeat tremolo 4 { c16 d }
11 }
12
13 \score { \notes \context Voice {
14 \nots
15 \apply #unfold-repeats \nots
16 }
17 \paper {raggedright = ##t} 
18      }
19