]> git.donarmstrong.com Git - lilypond.git/blob - input/test/repeat.ly
*** empty log message ***
[lilypond.git] / input / test / repeat.ly
1 \version "2.1.28"
2
3 % possible rename to lyric-repeat or repeat-lyric.
4
5 \header{ texidoc = "@cindex Repeat Lyrics
6 Alternate lyrics can be used, as well as alternate notes for repeats. "
7 }
8
9 %% Syntax << { aaa } { bbb } >> seems not to work in lyrics. 
10 %% The notes are lyrics do not match syntactically here. - HJJ
11
12 \score{
13         <<
14                   \context Staff \notes\relative c'{ 
15                           c d e f
16                           \repeat "volta" 2 { g a b c }
17                           \alternative { { c b a g } { f e d c } }
18                   }
19                   \context Lyrics \lyrics {
20                           De eer- ste << { maat } { moet } >>
21                           \repeat fold 2 { }
22                           \alternative {
23                                   { en dan twee keer } 
24                                   { een koe- plet _ } 
25                           }
26                           en dan nog dit er ach- ter aan
27                   }
28         >>
29         \paper{raggedright=##t}
30 }
31