]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/test-lyrics.ly
release: 1.1.43
[lilypond.git] / input / test / test-lyrics.ly
index 4d42f97030ae0ef44167830e68866a85453011ac..4ff7dbad308ed8d95785d4b3c545e930142674f4 100644 (file)
@@ -1,5 +1,7 @@
-$somewhat_long = \lyric{
-       \textstyle "roman" ;
+\version "1.0.19";
+
+$somewhat_long = \lyrics{
+       \property Lyrics . textstyle = "roman" 
        AaaaaaA2
        BbbbbbB2
        CcccccC2 
@@ -8,8 +10,8 @@ $somewhat_long = \lyric{
        FfffffF2
 }
 
-$rather_long = \lyric{
-       \textstyle "roman" ;
+$rather_long = \lyrics{
+       \property Lyrics . textstyle = "roman" 
        LLLLoooonggggg2 
        Syyllllaaabbble2 
        LLLLoooonggggg2 
@@ -18,8 +20,8 @@ $rather_long = \lyric{
        Syyyylllaaabbble2
 }
 
-$quite_long = \lyric{
-       \textstyle "roman" ;
+$quite_long = \lyrics{
+       \property Lyrics . textstyle = "roman"
        LLLLLLLLLooooongggggggg2 
        Syyyyyyyyyyyyylllllllaaaaaabbble2 
        LLLLLLLLLooooongggggggg2 
@@ -28,25 +30,25 @@ $quite_long = \lyric{
        Syyyyyyyyyyyyylllllllaaaaaabbble2
 }
 
-$somewhat_long_lyrics_staff = \type Lyrics = somewhat <
+$somewhat_long_lyrics_staff = \context Lyrics = somewhat <
        \$somewhat_long
 >
 
-$rather_long_lyrics_staff = \type Lyrics = rather <
+$rather_long_lyrics_staff = \context Lyrics = rather <
        \$rather_long
 >
 
-$quite_long_lyrics_staff = \type Lyrics = quite <
+$quite_long_lyrics_staff = \context Lyrics = quite <
        \$quite_long
 >
 
-melody = \melodic{
-       \octave c'; 
+melody = \notes
+\transpose c'{
        c4 e4 g4 e4  c4 e4 g4 e4  c4 e4 g4 e4  c4 e4 g4 e4
        c4 e4 g4 e4  c4 e4 g4 e4  c4 e4 g4 e4  c4 e4 g4 e4
 }
 
-$melodic_staff = \type Staff = mel <
+$melodic_staff = \context Staff = mel <
        \melody
 >