]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/lyrics-skip-notes.ly
* lily/staff-symbol-referencer.cc (get_position): emergency
[lilypond.git] / input / test / lyrics-skip-notes.ly
index 27460a6ebfba40a47fcc2278fd9a0cf17a3858fd..2fea413130ed0df0966cb0857741556dec7292c4 100644 (file)
@@ -1,7 +1,7 @@
 
 \header
 {
-texidoc ="
+    texidoc ="
 
 By inserting @code{\\skip} statements into lyric lines, one can attach
 less lyric syllables to a melody. 
@@ -10,15 +10,15 @@ less lyric syllables to a melody.
 }
 
 
-% shorthand for Skip Lyric
+                               % shorthand for Skip Lyric
 sl =  { \skip 4 }
 
 \version "2.3.8"
 \score {
-  <<
-  \context Voice = "A"    {c4 c c c}
-  \lyricsto "A" \context Lyrics=A \lyrics { foo __ \sl \sl bar }
-  \lyricsto "A" \context Lyrics=B \lyrics { foo -- \sl baz bar }
-  \lyricsto "A" \context Lyrics=C \lyrics { foo -- baz -- baaz bar }
-  >>
+    <<
+       \context Voice = "A" \relative { c4 c c c }
+       \lyricsto "A" \new Lyrics { foo __ \sl \sl bar }
+       \lyricsto "A" \new Lyrics { foo -- \sl baz bar }
+       \lyricsto "A" \new Lyrics { foo -- baz -- baaz bar }
+    >>
 }