]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/repeat-volta.ly
Massive changes - see ChangeLog.
[lilypond.git] / input / regression / repeat-volta.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.0"
3
4 \header{
5 texidoc="
6 Volta (Semi folded) behavior.  Voltas can start on non-barline moments.
7 If they don't barlines should still be shown.
8 "
9 }
10
11 %  no alts.
12 \score {
13   \notes \context Voice \relative c'' {
14     % repeat non aligning with barlines.
15     \repeat volta 3 { c^"3$\\times$ 0alt" d e }
16     % less alts than body
17     \repeat volta 4 { c^"4$\\times$ 2alt" d } \alternative { e f }
18     % more alts than body
19     \repeat volta 2 { c^"2$\\times$ 3alt" d } \alternative { e f g }
20   }
21   \paper {}
22   \midi {}
23 }
24
25