]> git.donarmstrong.com Git - lilypond.git/blob - input/test/repeat-manual.ly
release: 1.5.3
[lilypond.git] / input / test / repeat-manual.ly
1
2 \version "1.3.146"
3
4
5 \score { \notes {
6 % First a normal looking repeat:
7  c2 c
8     \property Score.repeatCommands = #'((volta "1."))
9  c c
10     \property Score.repeatCommands = #'((volta #f) end-repeat (volta "2."))
11  c c
12     \property Score.repeatCommands = #'((volta #f))
13 % Then a more strange one:
14  c c
15     \property Score.repeatCommands = #'((volta "93") end-repeat)
16  c c
17     \property Score.repeatCommands = #'((volta #f))
18  c c
19 }
20 }