]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/repeat-fold.ly
fix keep-inside-line on the left side (issue #130)
[lilypond.git] / input / regression / repeat-fold.ly
1 \version "2.7.39"
2
3 \header{
4 texidoc="
5 Folded repeat may not make sense without alternatives, and there
6 should not be more alternatives than repeats.
7 "
8 }
9
10 \paper { ragged-right = ##t } 
11
12 \context Staff  \relative c'' {
13     \repeat fold 3 { c^"3x 0alt" d }
14     % less alts than body
15     \repeat fold 4 { c^"4x 2alt" d } \alternative { e f }
16     % more alts than body
17     \repeat fold 2 { c^"2x 3alt" d } \alternative { e f g }
18   }
19
20