]> git.donarmstrong.com Git - lilypond.git/blob - input/test/test-lyrics.ly
4d42f97030ae0ef44167830e68866a85453011ac
[lilypond.git] / input / test / test-lyrics.ly
1 $somewhat_long = \lyric{
2         \textstyle "roman" ;
3         AaaaaaA2
4         BbbbbbB2
5         CcccccC2 
6         DdddddD2
7         EeeeeeE2
8         FfffffF2
9 }
10
11 $rather_long = \lyric{
12         \textstyle "roman" ;
13         LLLLoooonggggg2 
14         Syyllllaaabbble2 
15         LLLLoooonggggg2 
16         Syyllllllaaabbble2
17         LLLLoooonggggg2 
18         Syyyylllaaabbble2
19 }
20
21 $quite_long = \lyric{
22         \textstyle "roman" ;
23         LLLLLLLLLooooongggggggg2 
24         Syyyyyyyyyyyyylllllllaaaaaabbble2 
25         LLLLLLLLLooooongggggggg2 
26         Syyyyyyyyyyyyylllllllaaaaaabbble2
27         LLLLLLLLLooooongggggggg2 
28         Syyyyyyyyyyyyylllllllaaaaaabbble2
29 }
30
31 $somewhat_long_lyrics_staff = \type Lyrics = somewhat <
32         \$somewhat_long
33 >
34
35 $rather_long_lyrics_staff = \type Lyrics = rather <
36         \$rather_long
37 >
38
39 $quite_long_lyrics_staff = \type Lyrics = quite <
40         \$quite_long
41 >
42
43 melody = \melodic{
44         \octave c'; 
45         c4 e4 g4 e4  c4 e4 g4 e4  c4 e4 g4 e4  c4 e4 g4 e4
46         c4 e4 g4 e4  c4 e4 g4 e4  c4 e4 g4 e4  c4 e4 g4 e4
47 }
48
49 $melodic_staff = \type Staff = mel <
50         \melody
51 >
52
53 \score
54 {
55         <
56                 \$melodic_staff
57                 \$somewhat_long_lyrics_staff    
58 %               \$rather_long_lyrics_staff      
59                 \$quite_long_lyrics_staff       
60         >
61         \paper{
62 %               castingalgorithm = \Wordwrap;   
63         }
64 }