]> git.donarmstrong.com Git - lilypond.git/blob - input/test/lyrics-skip-notes.ly
This commit was manufactured by cvs2svn to create tag 'lilypond_2_1_17'.
[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 put less lyric syllables to a melody. 
7
8 "
9 }
10
11
12 % shorthand for Skip Lyric
13 sl = \notes { \skip 4 }
14
15 \version "2.1.16"
16 \score {
17   <<
18   \context Voice = "A"  \notes  {c4 c c c}
19   \lyricsto "A" \context LyricsVoice=A \lyrics { foo __ \sl \sl bar }
20   \lyricsto "A" \context LyricsVoice=B \lyrics { foo -- \sl baz bar }
21   \lyricsto "A" \context LyricsVoice=C \lyrics { foo -- baz -- baaz bar }
22   >>
23 }