]> git.donarmstrong.com Git - lilypond.git/blob - input/test/repeat-manual.ly
*** empty log message ***
[lilypond.git] / input / test / repeat-manual.ly
1
2 \version "2.1.28"
3 \header { texidoc = "@cindex Repeat Manual
4 By controlling manually the signs and numbers in repeats, an unusual 
5 output can be produced. "
6 }
7
8 \score { \notes \relative c'' {
9 % First a normal looking repeat:
10  c2 c
11     \set Score.repeatCommands = #'((volta "1."))
12  c c
13     \set Score.repeatCommands = #'((volta #f) end-repeat (volta "2."))
14  c c
15     \set Score.repeatCommands = #'((volta #f))
16 % Then a more strange one:
17  c c
18     \set Score.repeatCommands = #'((volta "93") end-repeat)
19  c c
20     \set Score.repeatCommands = #'((volta #f))
21  c c
22 }
23         \paper{raggedright=##t}
24 }
25