]> git.donarmstrong.com Git - lilypond.git/blob - input/test/repeat.ly
de9c8840ccff00676d90ce47d63cd2dfec3c3f16
[lilypond.git] / input / test / repeat.ly
1 \version "2.1.7"
2 % possible rename to lyric-repeat or repeat-lyric.
3 \header{ texidoc = "@cindex Repeat Lyrics
4 You can use alternate lyrics as well as alternate notes for repeats. "
5 }
6
7 \score{
8         <<
9                   \context Staff \notes\relative c'{ 
10                           c d e f
11                           \repeat "volta" 2 { g a b c }
12                           \alternative { { c b a g } { f e d c } }
13                   }
14                   \context Lyrics \lyrics {
15                           De eer- ste << { maat } { moet } >>
16                           \repeat fold 2 { }
17                           \alternative {
18                                   { en dan twee keer } 
19                                   { een koe- plet _ } 
20                           }
21                           en dan nog dit er ach- ter aan
22                   }
23         >>
24         \paper{raggedright=##t}
25 }
26