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