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