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