]> git.donarmstrong.com Git - lilypond.git/blob - input/test/lyrics-skip-notes.ly
86b5480b8f474ec181ef725773ad6689316d91db
[lilypond.git] / input / test / lyrics-skip-notes.ly
1
2 \header
3 {
4 texidoc ="
5
6 By inserting @code{\\skip} statements into lyric lines, one can attach
7 less lyric syllables to a melody. 
8
9 "
10 }
11
12
13 % shorthand for Skip Lyric
14 sl = \notes { \skip 4 }
15
16 \version "2.1.26"
17 \score {
18   <<
19   \context Voice = "A"  \notes  {c4 c c c}
20   \lyricsto "A" \context Lyrics=A \lyrics { foo __ \sl \sl bar }
21   \lyricsto "A" \context Lyrics=B \lyrics { foo -- \sl baz bar }
22   \lyricsto "A" \context Lyrics=C \lyrics { foo -- baz -- baaz bar }
23   >>
24 }