]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/repeat-fold.ly
.ly version update.
[lilypond.git] / input / regression / repeat-fold.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.8"
3
4 \header{
5 texidoc="
6 Folded.  This doesn't make sense without alternatives, but it works.
7 "
8 }
9
10 \score {
11   \context Staff \notes \relative c'' {
12     \repeat fold 3 { c^"3$\\times$ 0alt" d }
13     % less alts than body
14     \repeat fold 4 { c^"4$\\times$ 2alt" d } \alternative { e f }
15     % more alts than body
16     \repeat fold 2 { c^"2$\\times$ 3alt" d } \alternative { e f g }
17   }
18 }
19
20