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