]> git.donarmstrong.com Git - lilypond.git/blob - input/test/repeat-manual.ly
Add texidoc index and a few comments.
[lilypond.git] / input / test / repeat-manual.ly
1 \version "1.7.18"
2 \header { texidoc = "@cindex Repeat Manual
3 You can manually control repeat signs and numbers to produce
4 unusual output. "
5 }
6
7 \score { \notes {
8 % First a normal looking repeat:
9  c2 c
10     \property Score.repeatCommands = #'((volta "1."))
11  c c
12     \property Score.repeatCommands = #'((volta #f) end-repeat (volta "2."))
13  c c
14     \property Score.repeatCommands = #'((volta #f))
15 % Then a more strange one:
16  c c
17     \property Score.repeatCommands = #'((volta "93") end-repeat)
18  c c
19     \property Score.repeatCommands = #'((volta #f))
20  c c
21 }
22         \paper{raggedright=##t}
23 }
24 %% new-chords-done %%